html{
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: sans-serif;
    margin: 0;
    height: 100vh;
}

.user-agreement-container{
    padding: 3% 2% 2% 2%;
}

.top-icon{
    position: relative;
}

.multi-icon{
    position: absolute;
    left: 1%;
}

.polygon-icon{
    position: absolute;
    left: 50%;
}

.user-agreement-frontUI{
    display: flex;
}

.main-content{
    display: flex;
    flex-direction: column;
    padding-left: 3%;
    padding-right: 3%;
    gap: 120px;
}

.main-title{
    font-weight: 700;
    font-size: 50px;
}

.user-agreement-btn{
    padding: 10px 15px;
    background-color: #7A2046;
    border-radius: 12px;
    box-shadow: 0px 4px 4px 0px #00000040;
    color: white;
    font-weight: 400;
    border: none;
    cursor: pointer;
}

.link-route{
    display: flex;
    gap: 20px;
}

.active {
    display: block;
}

.user-agree-backBtn{
    padding: 10px 30px;
    background-color: #7A2046;
    border-radius: 12px;
    box-shadow: 0px 4px 4px 0px #00000040;
    color: white;
    font-weight: 400;
    border: none;
    cursor: pointer;
}

.user-agreement-mainImg{
    position: absolute; 
    right: 1%; 
    top: 10%; 
    height: 600px;
    width: 60%;
}

.user-agree-subTitle{
    display: flex; 
    flex-direction: column; 
    gap: 28px; 
    position: relative;
}

.myElementClass{
    display: none;
    margin-top: 3%;
}

.readBtnContainer{
    width: 41%;
    display: flex; 
    justify-content: center;
    align-items: center;
}

.user-agree-appUser-subTitle{
    font-weight: 700; 
    margin: 0; 
    font-size: 30px; 
    width: 41%;
}

.user-agree-entering-subTitle{
    width: 41%;
}

.user-agreement-topContent{
    margin-top: 3%;
}

.user-agreement-menuIcon{
    position: absolute; 
    right: 4%;
    top: 9%; 
    opacity: 0.8
}

@media screen and (min-width: 2200px) {
    .myElementClass{
        margin-top: 12%;
    }
}

@media screen and (max-width: 800px){
    .user-agreement-tabflex{
        display: flex;
        justify-content: center;
    }
    .main-title{
        font-size: 35px;
    }
    .user-agreement-frontUI{
        display: block;
        height: unset;
    }
    .main-content{
        width: unset;
        gap: unset;
    }
    .user-agreement-mainImg{
        position: unset;
        height: 100%; 
        width: 65%;
        padding: 5% 0;
    }
    .user-agree-subTitle{
        margin-top: 3%;
    }
    .main-title{
        width: 86%;
    }
    .readBtnContainer{
        padding-bottom: 8%;
        width: unset;
        text-align: center;
    }
    .user-agree-appUser-subTitle{
        width: unset;
    }
    .user-agree-entering-subTitle{
        width: unset;
    }
}

@media screen and (max-width: 500px){
    .user-agreement-menuIcon{
        width: 10%;
    }
    .main-title{
        font-size: 26px;
    }
    .user-agreement-topContent{
        margin-top: 10%;
    }
    .link-route{
        margin-top: 2%;
    }
    .multi-icon{
        width: 5%;
    }
    .polygon-icon{
        width: 3%;
    }
    .main-content{
        gap: 10px;
    }
    .user-agree-appUser-subTitle{
        font-size: 20px;
    }
}