html{
    height: 100%;
}
body{
    background-image: url("./assets/bg_mobile.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height:  100vh;
    margin: 0px;
}

.media{
    width: 100%;
    min-height: 100vh;
    margin: auto;
    display: flex;
    vertical-align: middle;
}

.content{
    margin: auto;
}

.address a{
    display: flex;
    background-color: #93412A;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 20px;
    padding: 7px 15px 7px 15px;
    width: fit-content;
    border: none;
    margin: auto;
    margin-bottom: 10px;
    font-size: small;
    text-decoration: none;
}

.address > a:hover{
    color: black;
    background-color: #fff0d0;
}

.link{
    min-width: 170px;
    width: 50%;
    margin: auto;
}

.link > button, .link a{
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: none;
    background-color: #FFFAEF;
    margin-bottom: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    color: black;
}

.link > a > div{
    display: flex;
    width: 150px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    color: black;
    align-items: center;
}

.link>button{
    justify-content: center;
    width: 100%;
}

button:hover, a:hover{
    background-color: #fff0d0;
}

img{
    width: 30px;
    height: 30px;
    margin-right: 5px;
    border-radius: 100%;
    margin-left: 20px;
}

.others-btn > img{
    margin-left: 0px;
}

.logo{
    display: flex;
    border: none;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 100%;
    justify-content: center;
}

.logo > img{
    width: 80px;
    height: auto;
}

.text{
    width: fit-content;
    margin: auto;
}
.text > h1{
    font-size: 20px;
    color: white;
    font-weight: bold;
    text-align: center;
    background-color: #00000077;
    width: fit-content;
    padding: 5px;
}

.modal{
    position: fixed;
    background-color: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    vertical-align: middle;
    visibility: hidden;
}

.content-modal{
    margin: auto;
    width: 50%;
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
    padding: 40px 0px 40px 0px;
}

.content-modal > .link{
    width: 80%;
}

.content-modal > .close-btn{
    position: absolute;
    right: -20px;
    top: -20px;
}

.close-btn > button{
    background-color: #ffffff;
    font-size: large;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: none;
    font-weight: bolder;
    cursor:pointer;
}

.close-btn > button:hover{
    color: rgb(228, 0, 0);
}

@media (min-width:1024px){
    .content{
        width: 50%;
        margin-top: 0px;
    }

    .address a{
        font-size: large;
        margin-bottom: 20px;
    }

    .link{
        min-width: 170px;
        width: 100%;
        margin: auto;
        justify-content: center;
    }

    .link > button, .link > a{
        width: 100%;
        justify-content: center;
        margin-bottom: 7px;
        height: 45px;
    }

    .link > a > div{
        display: flex;
        width: 170px;
        cursor: pointer;
        font-size: 22px;
        font-weight: bold;
        font-size: 22px;
        text-decoration: none;
        color: black;
        align-items: center;
    }

    .content-modal{
        width: 50%;
        border-radius: 10px;
        position: relative;
    }

    .content-modal > .link > a{
        width: 60%;
        margin: auto;
        justify-content: left;
        margin-bottom: 7px;
    }

    .logo > img{
        width: 150px;
    }

    .text > h1{
        font-size: 26px;
    }

    img{
        width: 35px;
        height: 35px;
        margin-left: 0px;
    }
}