@font-face {
    font-family: "archivo";
    src: url("./Archivo-Regular.woff");
}

*,
*::after,
*::before {
    outline: none;
    border: none;
    text-decoration: none;
    margin-block: 0;
    margin-inline: 0;
    list-style: none;
    box-sizing: border-box;
}

body {
    background-color: #002D80;
    font-family: "archivo";
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    gap: 58px;
}

span {
    font-size: 68px;
    font-weight: 600;
    color: #fff;
}

.img-cnt {
    width: 446px;
    height: 396px;
}

.img-cnt img {
    height: 100%;
    width: 100%;
}

@media (max-width:1200px) {
    span {
        font-size: 58px;
    }

    .img-cnt {
        width: 390px;
        height: 346px;
    }

}

@media (max-width: 991px) {
    span {
        font-size: 48px;
    }

    .img-cnt {
        width: 350px;
        height: 316px;
    }
}

@media (max-width: 576px) {
    span {
        font-size: 36px;
    }

    .img-cnt {
        width: 300px;
        height: 269px;
    }
}

@media only screen and (max-device-width: 900px) and (orientation: landscape) {
    .content {
        padding-top: 30px;
        padding-bottom: 30px;
        gap: 28px;
    }

    span {
        font-size: 42px;
    }

    .img-cnt {
        width: 288px;
        height: 238px;
    }
}