/*-----CSS for Homework Assignments Website-----*/

* {
    box-sizing: border-box;
    font-family: "Kalam", cursive;
    font-weight: 450;
    font-style: normal;
}

body{
    background: linear-gradient(165deg, #ffe58a, #ffce61, #ee6c45, #bf3475, #50366f, #1f214d);
    align-content: center;
    display:flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    min-height: 100vh;
}

input {
    background-color: white;
    border: none;
    min-width: 300px;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 10px black;
}

input:focus {
    outline: none;
}

h1 {
    font-size: 60px;
}

p {
    font-size: 30px;
    text-align: center;
    font-family: "Permanent Marker", serif;
    font-weight: 400;
    font-style: normal;
}

.input {
    text-align: center;
}

