@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    color: #fff;
    background: #1d1b1b;
    /* overflow: hidden; */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-family: 'Sarina', regular;
    font-size: 40px;
    color: #ffc7ab;
    text-shadow: 0 0 15px black;
    text-decoration: none;
    font-weight: 700;
}

.navbar a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: #ffc7ab;
}

.main {
    min-height: 97vh;
    background: url("/assets/media/quiz.jpg") no-repeat;
    filter: blur(15px);
    background-size: cover;
    background-position: center;
    pointer-events: auto;
    transition: .3s ease;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 650px;
    background: #fff;
    border-radius: 6px;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
    max-width: 600px;
    background-color: rgba(0,0,0, 0.8);
    padding: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0, 0.1);
}

.home {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-content {
    max-width: 500px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.home-content h1 {
    color: #ffc7ab;
    font-size: 78px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.home-content h3 {
    color: #ffc7ab;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.home-content p {
    font-size: 16px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);
    margin-bottom: 30px;
    padding: 10px;
}

.home-content a {
    font-size: 16px;
    text-align: center;
    color: #ffc7ab;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);
    margin-bottom: 30px;
    padding: 10px;
}

.side-footer
{
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    background-color: #ffc7ab;
    color: #1d1b1b;
    position: relative;
    bottom: 0;
    width: 100%;
}

.side-footer a
{
    color: #942253;
    text-decoration: none;
}