*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
}

a, a:visited {
    text-decoration: none;
    color: #FFFF05;
}

a:hover:visited {
    color: #FFF;
}

body {
    width: 100vw;
    height: 100vh;
    padding: 0% 10%;
    color: #FFF;
    background-color: #008000;
    background-image: url("../img/background_avbr.webp");
    background-position: top right;
    background-size: auto 100vh;
    background-repeat: no-repeat;
    font-family: "Montserrat", system-ui;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    overflow-x: hidden;
}

ul {
    list-style-type: none;
}

#social_div {
    width: 40%;
}

#logo {
    max-width: 90%;
    margin: 0 auto;
}

.links, .links a:active, a:visited {
    display: flex;
    align-items: baseline;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 1.2rem 0;
    padding: 20px;
    color: #FFFF05;
    background-image: linear-gradient(to right, #008000, rgba(00, 00, 00, 0.4));
    font-size: 1.3rem;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    list-style-type: none;
    border-radius: 20px;
    cursor: pointer;
}

.bottons a:hover {
    color: #000;
    background-image: linear-gradient(to left, #FFFF05, rgba(218, 218, 218, 0.4));
}

.links a:hover {
    color: #FFF;
    background-color: #000;
}

#copy {
    width: 100%;
    margin-top: 30px;
    padding: 10px 15px 10px 4%;
    background-color: #008000;
    background-image: linear-gradient(to right, #008000, rgba(00, 00, 00, 0.4));
    font-size: 15px;
    border-radius: 20px;
    text-align: center;
}

#modal {
    width: 40%;
    height: 40%;
    margin: auto auto;
    color: #FFF;
    background-color: #008000;
    border-radius: 5px;
    padding: 6.5% 1%;
    text-align: center;
}

#modal p {
    text-align: center;
}

#modal a, #modal a:visited {
    color: #FFFF05;
}

#modal a:hover {
    color: #000;
}

#close_modal {
    color: #FFFF05;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    font-weight: 700;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
  }

@media screen and (max-width: 1165px) {

    #social_div {
        width: 48%;
        padding: 3%;
    }

    #modal {
        width: 70%;
        padding: 15% 1%;
    }
}

@media screen and (max-width: 945px) {

    body {
        padding: 0% 2.5%;
    }
}

@media screen and (max-width: 900px) {

    body {
        padding: 0% 1%;
        background-image: url("../img/background_avbr_mobile.webp");
    }

    #social_div {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    body {
        padding-top: 12%;
        background-image: url("../img/background_avbr_mobile.webp");
        background-size: 100% 100vh;
    }
}

@media screen and (max-width: 630px) {
    #modal {
        width: 95%;
        padding: 10% 1%;
    }
}