@font-face {
    font-family: "SF Pro Display bold";
    font-style: bold;
    font-weight: 700;
    src: url(../fonts/SF-Pro-Display-Bold.woff2) format("woff2");
}
@font-face {
    font-family: "SF Pro Display";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/SFPRODISPLAYREGULAR.woff2) format("woff2");
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    max-width: 355px;
    height: 100dvh;
    margin: auto;
}
.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    max-width: 334px;
}
.header_logo {
    align-items: center;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 15px;
    gap: 9px;
    h1 {
        font-size: 44px;
        color: #23374b;
        font-family: "SF Pro Display bold";
        span {
            font-size: 52px;
        }
    }

    img {
        width: 147px;
        height: 147px;
    }
}
.header_list {
    flex-grow: 0;
    align-items: baseline;
    ul {
        display: flex;
        color: #23374b;
        font-family: "SF Pro Display";
        font-weight: 400;
        justify-content: space-evenly;
        font-size: 24px;
    }
}
.link_buttons {
    margin-bottom: 60px;
    width: 100%;
    ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        li {
            min-width: 100%;
            height: 48px;
            text-align: center;
            background-color: #23374b;
            border-radius: 10px;
            display: block;
            box-shadow: 0px 4px 4px 0px #00000040;
            line-height: 48px;
            margin-bottom: 15px;
            a {
                font-family: "SF Pro Display";
                font-weight: 400;
                display: block;
                width: 100%;
                height: 100%;
                color: white;
                font-size: 16px;
            }
        }
    }
}
.link_socials {
    width: 100%;
    margin-bottom: 60px;
    ul {
        display: flex;
        justify-content: space-evenly;
    }
}
@media (max-width: 420px) {
    .header_logo h1 {
        font-size: 32px;
        span {
            font-size: 38px;
        }
    }
    .header_list ul {
        font-size: 20px;
    }
    .link_buttons {
        ul {
            li {
                a {
                    font-size: 16px;
                }
            }
        }
    }
}
@media screen and (min-width: 900px) {
    .container {
        justify-content: center;
    }
    .header {
        flex-grow: 0;
        margin-bottom: 130px;
    }
}
