@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

.container {
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: rgba(255, 255, 255, 1);
    border-bottom: 1px solid #ddd;
    height: 80px;
}

.logo-img {
    color: rgba(33, 150, 243, 1);
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 26px;
    user-select: none;
}

.logo span {
    color: #333;
}

nav .active {
    color: #007BFF;
}

.contact-info .active {
    color: #007bff;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
}

.contact-info a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 400;
}

.menu nav {
    background-color: #ffffff;
    padding: 10px;
    margin-top: 94px;
}

.menu nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.menu nav ul li {
    margin: 0 1px;
}

.menu nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.menu nav ul li a.active {
    color: #ffffff;
}

.example {
    margin-top: 34px;
    margin-bottom: 94px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.example-foto {
    border: 1px solid rgba(238, 238, 238, 1);
    width: 370px;
    height: 404px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 4px;
}

.example-foto img {
    width: 370px;
}

.example-foto h3 {
    margin: 16px 24px 0 24px;
}

.example-foto p {
    margin: 0 24px 20px 24px;
    color: grey;
}

footer {
    background: #2F303A;
    color: white;
    padding: 60px 0;
}

.footer {
    display: flex;
    background: #2F303A;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

footer span {
    color: white;
}

.logo span1 {
    color: white;
}

footer address {
    margin: 0;
}

.footer-link {
    color: grey;
}

nav .active {
    color: #007BFF;
}

.contact-info .active {
    color: #007bff;
}

.menu .link {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    background-color: rgba(245, 244, 250, 1);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menu .active {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #007BFF;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

