body{
    text-align:center;
    
}
h2{
    
    color: #9198e5;
    font-size:30px;
}
#questions{
    background: linear-gradient(#e66465, #9198e5);
    border:black 3px solid;
    margin-top:100px;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 98%;
    padding: 20px;
    background: gray;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 80;
}

.logo {
    font-size: 32px;
    color: black;
    text-decoration: none;
    font-weight: 650;
}

.navbar a {
    font-size: 18px;
    color: skyblue;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    position: relative;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: black;
    transition: width 0.5s ease-in; 
}

.navbar a:hover::before {
    width: 100%;
}

.active {
    background: #0047ab; 
    border-radius: 50%;
}
#box1{
    border:3px black solid;
    width:25%;
    position:absolute;
    margin-top:-300px;
    right:50px;
    padding:10px;
}
#box2{
    border:3px black solid;
    width:25%;
    position:absolute;
    margin-top:-300px;
    left:50px;
    padding:10px;
}
#Modern{
    width:25%;
    position:absolute;
    margin-top:-340px;
    left:50px;
}
#Origin{
    width:25%;
    position:absolute;
    margin-top:-360px;
    right:50px;
}