* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    background-color: #121212;
    color: white;
}

.logoandname::before {
    content: "";
}

body {
    zoom: 1.1;
}

/* Header styling */
header {
    position: absolute;
    top: 0;
    width: 100%;
    height: 10vh;
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.logoandname {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px transparent;
    padding: 10px;
    background-color: transparent;
    height: 80%;
    width: 20%;
    font-size: 300%; /* set font size to 18px */
    font-weight: bold; /* make the text bolder */
    font-size: 200%; /* set font size to 120px */
    text-align: center; /* center the text horizontally */
    display: flex; /* use flexbox to center the text vertically */
    justify-content: center; /* center the text horizontally */
    align-items: center; /* center the text vertically */
}

.links {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: transparent;
    font-size: 18px;
    height: 60%;
    width: 60%;
    display: flex; /* use flexbox to align items horizontally */
    justify-content:  flex-end; /* align items horizontally */
    gap: 80px;

}

.links div {
    cursor: pointer;
    font-weight: 100;
    font-size: larger;
    background-color: transparent;


}

.mainarea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15vh;
    background-color: #1e1e1e;
}

.question {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: larger;
    background-color: #1e1e1e;
    margin-left: 10%;
    margin-right: 10%;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 10vh;
    background-color: transparent;
    color: #fff;
    padding: 20px;
    text-align: center;
}


::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: none;
}