@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/Inter-Light.woff2") format("woff2");
    font-weight: 300;
}

svg,
svg * {
    pointer-events: none;
}

html {
    background-color: rgba(246, 242, 237, 1);
    padding: 0;
    font-family: Satoshi, Arial, sans-serif;
    font-weight: 300;
}

h1 {
    margin-block-start: 0;
    font-weight: 300;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease-in-out;
}

a:visited {
    color: inherit;
}

body {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    padding-bottom: 32px;
}

.body-container {
    padding: 0 24px;
}

@media screen and (min-width: 768px) {
    .body-container {
        padding: 0 40px;
    }
}

@media screen and (min-width: 1024px) {
    .body-container {
        padding: 0 60px;
    }
}

@media screen and (min-width: 1184px) {
    .body-container {
        padding: 0 80px;
    }
}

@media screen and (min-width: 1440px) {
    .body-container {
        min-width: 1024px;
        width: 1024px;
    }
}

/* Logo */
.logo-container {
    margin-top: 100px;
}

#desktop-logo {
    display: none;
}

@media screen and (min-width: 768px) {
    #mobile-logo {
        display: none;
    }

    #desktop-logo {
        display: block;
    }
}

/* Main */
main {
    margin-top: 10px;
}

main h1 {
    color: rgba(59, 60, 60, 1);
    font-style: normal;
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    main {
        margin-top: 30px;
    }

    main h1 {
        font-size: 48px;
        line-height: 58px;
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 1024px) {
    main {
        display: flex;
    }

    main h1 {
        margin-right: 104px;
        flex-shrink: 0;
    }
}

@media screen and (min-width: 1184px) {
    main h1 {
        margin-right: 224px;
        flex-shrink: 0;
    }
}

main .introduction {
    color: #3b3c3c;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
    main .introduction {
        font-size: 20px;
    }
}

main .contact-group {
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    color: #3b3c3c;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
}

@media screen and (min-width: 768px) {
    main .contact-group {
        font-size: 20px;
    }
}

/* button */
.btn {
    background-color: #467fcf;
    /* A pleasant blue */
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
    /* Smooth transition on hover */
}

.btn:hover {
    background-color: #3e6eb9;
    /* Darker blue on hover */
}

.btn-secondary {
    background-color: #f0f0f0;
    /* A light, neutral button color */
    color: #333;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Footer */
footer {
    font-size: 14px;
    line-height: 17px;
    color: #a9aaab;
    margin-top: 40px;
}

footer a:hover {
    color: rgba(44, 70, 241, 1);
}