html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: auto;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf');
}

@font-face {
    font-family: 'Cubano';
    src: url('../fonts/Cubano.ttf');
}

body {
    background-image: url("../img/background_1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: white;
}


header {
    z-index: 2;
    text-align: center;
    padding-top: 20px;
    width: 100%;
}

.container {
    color: white;
}

.logo {
    width: 25%;
}

.information__block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}

.main_text {
    font-family: 'Cubano', sans-serif;
    margin: 0;
    letter-spacing: 1px;
    color: #E2B71B;
    font-weight: bolder;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.line1 {
    font-size: 90px;
}

.line2 {
    font-size: 60px;
}

.address {
    font-family: 'Arial', sans-serif;
    font-size: 21px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.2);
}

.follow-text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: white;
    text-transform: uppercase;
}

.footer-text {
    justify-content: end;
    align-items: center;
    display: flex;
    width: 95%;
    font-size: 20px;
}
.btn{
    background-color: rgba(221, 34, 64, 1);
    color: #ffffff;;
    padding: 10px 25px;
    border:1px solid rgba(221, 34, 64, 1);
    border-radius: 25px;
    font-size: 25px;
    margin-top: 10px;
    text-decoration: none;
}
@media (max-width: 1200px) {
    .logo {
        width: 50%;
    }

    .footer-text {
        display: none;
    }
}

@media (max-width: 992px) {
    .logo {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .logo {
        width: 78%;
    }
}

@media (max-width: 620px) {
    .logo {
        width: 82%;
    }

    .line1 {
        font-size: 56px;
    }

    .line2 {
        font-size: 45px;
    }
}

@media (max-width: 380px) {
    .logo {
        width: 88%;
    }

    .line1 {
        font-size: 46px;
    }

    .line2 {
        font-size: 32px;
    }
}
