@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

html, button, input, textarea, select{
    font-family: 'Poppins', sans-serif;
}

html{
    background-image: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: hidden;
} 

body{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: scroll;
}

body::-webkit-scrollbar {
    display: none;
}

img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

a{
    text-decoration: none;
}

button{
    margin-top: 30px;
    margin-left: calc(25% - 15px);
    padding: 15px;
    width: 50%;
    font-size: 18px;
    color: white;
    background: linear-gradient(to right, dodgerblue 0%, dodgerblue 100%);
    border: none;
    border-radius: 50px;
}

button:hover{
    background: linear-gradient(to right, dodgerblue 0%, deepskyblue 80%);
    transform: scale(0.95);
    transition: all 0.3s;
}

.header{
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 2;
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgb(240, 240, 240);
}

.header img{
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    padding: 15px;
    object-fit: contain;
}

/* Container */
.container{
    margin: 0;
    margin-top: 80px;
    display: flex;
}

.left-container{
    flex: 20%;
    margin: 20px 10px 20px 20px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    height: calc(100% - 120px);
    position: sticky;
    top: 100px;
}

.right-container{
    flex: 80%;
    margin: 20px 20px 20px 10px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
}

/* Left Container */
.menu-option{
    display: flex;
    margin-top: 10px;
    padding: 10px;
    background-color: rgb(240, 240, 240);
    border: 2px solid rgb(240, 240, 240);
    border-radius: 10px;
}

.menu-option img{
    flex: 10%;
    height: 50px;
    object-fit: contain;
}

.menu-option div{
    flex: 90%;
    margin-left: 10px;
    font-size: 16px;
    color: rgb(50, 50, 50);
}

.menu-option div p{
    margin: 0;
    line-height: 50px;
}

.menu-option:hover, .menu-option-selected{
    border-color: dodgerblue;
    background-color: white;
}

.menu-option:hover div p, .menu-option-selected div p{
    color: dodgerblue;
    font-weight: bold;
}

/* Right Container */
.right-container iframe{
    width: 100%;
    height: 100%;
    border: none;
}