* {
    padding: 0;
    margin: 0;
    color: white;
    font-family:'Inter', 'Lato', 'Helvetica';
}

body {
    height: 100vh;
    width: 100vw;
    background-image: linear-gradient(#02005C, #00000A);
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    align-items: center;
}

/* NAVBAR */

nav {
    width: 100vw;
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0,0,0,0.4);
}

nav img {
    height: 4vh;
}

#nav-left {
    padding-left: 2vw;
}

#nav-right {
    display: flex;
    gap: 2vw;
    padding-right: 2vw;
}

#nav-right a {
    text-decoration: none;
    font-size: 16px;
}

form {
    display: flex;
    gap: 2vw;
}

form input {
    width: 25vw;
    border: 5px #060045 solid;
    border-radius: 25px;
    background-color: rgb(217, 217, 217, 0.25);
    height: 3vw;
    padding: 0 1vw 0 1vw;
    margin-bottom: 2vh;
}

form input:focus {
    outline: none;
}

input[type = 'submit'] {
    width: 8vw;
    padding: 1vw 0 2vw 0;
    align-self: center;
    border: none;
    font-weight: bold;
    background-color: #0F58C0;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

input[type = 'submit']:hover {
    scale: 1.2;
}

input[type='submit']:active {
    scale: 1;
}

a {
    text-decoration: none;
    opacity: 0.75;
    margin-bottom: 1vh;
    transition: all 0.3s ease-in-out;
}

a:hover {
    opacity: 1;
}

main {
    margin-top: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vh;
}

@media (max-width: 767px) {

    form {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    p {
        text-align: center;
        width: 90%;
    }

    #nav-right a {
        font-size: 12px;
    }

    form input {
        width: 80%;
        height: 5vh;
    }

    input[type='submit'] {
        width: 30vw;
        padding: 2vw 0 2vw 0;
    }

    body {
        height: auto;
        width: auto;
    }

    p {
        font-size: 12px;
    }

    a {
        align-self: center;
    }
}