body {
    background-image: url("assets/Sonic-Prototype.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.panel { 
    position: relative;
    width: 25vw;
    height: 75vh;
    left: 37.5vw;
    top: 12.5vh;

    background-color: white;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.panelText {
    position: relative;
    top: 2vh;
    left: 5.6vw;

    font-family: Tahoma,Verdana,Segoe,sans-serif; 
    font-size: 40px;
}

.form {
    position: relative;
    max-width: 20vw;
    left: 2.5vw;
    top: 20vh;
}

.form * {
    font-family: Tahoma,Verdana,Segoe,sans-serif; 
}

.input {
    border: 2px solid #e0e0e0;
    outline: none;
    border-radius: 4px;
    font-size: 16px;
    color: #333333;
    transition: border-color 0.3s;
    font-family: Tahoma,Verdana,Segoe,sans-serif; 
}

.input:focus {
    border: 2px solid #0088d7;
}

input::placeholder {
    color: #888888;
}

.answer{
    font-size: 70px;
    color: #ffffff;
}