*{
    padding:0px;
    border:0px;
    margin:0px;
}

.rubik {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

#navbar{
    width:100%;
    height:60px;
    position:fixed;
    top:0px;
    left:0px;
    border-bottom: 1px solid #d6d6d6;
    display:flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
}

.iconbox{
    width: 70px;
    height:60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burger{
    width: 30px;
    height: 20px;
    background-color: white;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.burger:hover{
    transform:scale(1.1);
    cursor: pointer;
}

#topper{
    display:flex;
    align-items: center;
}

#topperlogo{
    height: 32px;
    width: 32px;
}

#toppertitle{
    margin-left: 10px;
    font-weight: 600;
    font-size: 20px;
}

.layer{
    width: 100%;
    height: 20%;
    background-color: rgb(173,173,173);
    border-radius: 3px;
}

.sidebar{
    width: 360px;
    height: 100vh;
    border-right: 1px solid #d6d6d6;
    background-color: white;
    z-index: 4;
    position:fixed;
    left:-360px;
    top: 0px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.opensidebar{
    left:0px;
}

#wipbox{
    width: 60%;
    height: 216px;
    border-radius: 20px;
    background-color: #c3e0dd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#wipbox > img{
    width: 50%;
    height: 50%;
    margin-bottom: 20px;
}

#wipbox > p{
    font-size: 16px;
}

.logo{
    position: relative;
    width:100%;
    height: 100%;
    background-color: rgb(224, 230, 232);
    border-radius: 20%;
}

.logogreen{
    position: absolute;
    width:40%;
    height:40%;
    bottom:50%;
    right:50%;
    background-color: #84e87d;
    border-radius: 20%;
}

.logoblack{
    position: absolute;
    width:35%;
    height:35%;
    top:54%;
    left:54%;
    background-color: black;
    border-radius: 20%;
}

.logohole{
    position: absolute;
    width:60%;
    height: 60%;
    left:20%;
    top: 20%;
    border-radius: 20%;
    background-color: rgb(224, 230, 232);
}

#rotate-overlay {
    position: fixed;
    inset: 0;
    background: black;
    color: white;

    display: none; /* Hidden by default */

    justify-content: center;
    align-items: center;
    text-align: center;

    z-index: 999999;
    padding: 2rem;
    box-sizing: border-box;

    font-family: sans-serif;
}

.rotate-content {
    max-width: 400px;
}

.rotate-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

@media (max-height: 510px) {
    #rotate-overlay {
        display: flex;
    }
}

footer{
    position:absolute;
    bottom: 0px;
    width:100vw;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerlink{
    color: grey;
    text-decoration: none;
    padding-left:15px;
    padding-right:15px;
}

.footerlink:hover{
    text-decoration: underline;
    cursor:pointer;
}

.lined{
    border-right: 2px solid grey;
}

main{
    width:90%;
    padding-top: 90px;
    padding-bottom: 75px;
}

main > p{
    margin-top: 15px;
    margin-bottom: 15px;
}

#cookiepopup{
    position: fixed;
    width:100vw;
    height:120px;
    bottom: 0px;
    background-color: white;
    border-top:6px solid #33ea25;
    display: flex;
    align-items: center;
    justify-content: center;
}

.half{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#left{
    width:270px;
    align-items: flex-start;
}

#right{
    width:90px;
}

#accept{
    width:90%;
    height: 35px;
    background-color: black;
    color: white;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

#reject{
    width:90%;
    height: 35px;
    background-color: white;
    border: 1px solid black;
    border-radius: 10px;
    cursor: pointer;
}

#left > h3{
    font-weight: 600;
    margin-bottom: 10px;
}