body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
header {
    background-color: #c6d5fe;
    color: black;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Align logo and nav links to opposite ends */
    font-family: 'Roboto', 'Courier New', Courier, monospace; /* Apply the custom font */
}
.logo-container {
    display: flex;
    align-items: center;
    
}

/* Add styles for the class "styled-text" */
.styled-title {
    padding: 5px; /* Add padding to create distance from the border */
    border-radius: 5px; /* Add border radius for rounded corners */
    width: 300px; /* Specify the width of the div */
    text-align: center; /* Center the text horizontally */
    margin: 20px auto; /* Center the div horizontally */
}

.styled-text {
    padding: 10px; /* Add padding to create distance from the border */
    border: 2px solid rgba(0, 0, 0, 0.234); /* Add a border */
    border-radius: 5px; /* Add border radius for rounded corners */
    width: 1500px; /* Specify the width of the div */
    text-align: left; /* Center the text horizontally */
    margin: 20px auto; /* Center the div horizontally */
}


.logo {
    width: 50px; /* Adjust width as needed */
    height: auto;
    margin-right: 10px;
}
/* Define font styles for the navigation links with the "nav-link" class */
.nav-link {
    font-family: 'tahoma', sans-serif; /* Specify your custom font */
    /* Add other font styles as needed */
    color: black; /* Default text color */
    transition: color 2.5s; /* Add smooth transition effect */
}

/* Change text color when hovering over the navigation links */
.nav-link:hover {
    color: rgba(62, 3, 255, 0.549); /* New text color on hover */
}

nav {
    background-color: #c6d5fe  ;
    padding: 3px;
    text-align: center;
}
nav a {
    color: black;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold ;
}
nav a:hover {
    text-decoration: underline;
}
.container {
    width: 97%; /* Adjust width as needed */
    margin: 20px auto; /* Center the container horizontally */
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center; /* Center text inside the container */
}



.box-container {
    display: flex; /* Ensure the boxes are displayed in a row */
    justify-content: space-between; /* Add space between the boxes */
    margin: 20px auto;
    max-width: 1500px;
}

.box {
    width: calc(33.33% - 10px); /* Adjust width as needed */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    text-align: left;
}

.box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.box p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}



.box-container {
    display: flex;
}

.box {
    display: flex;
    flex-direction: column;
    width: 50%; /* Adjust width as needed */
    padding: 10px;
}

.box-content {
    display: flex;
    align-items: center;
}

.box-image {
    width: 30px !important; /* Set the width of the image */
    height: 30px !important; /* Set the height of the image */
    margin-right: 10px; /* Add some margin to separate the image from the text */
}






.not-centered {
    text-align: left; /* Align text to the left */
}
footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 100%;
}
.centered {
    text-align: center;
}


body {
    overflow-x: hidden;
}
