body {
    background-color: rgb(10,10,12);
    color: white;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
}

.me {
    display: flex;
}

.about {
    margin: 0 30px;
    margin-bottom: 30px;
}

.fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

img {
    height: 100vh;
    filter: hue-rotate(180deg);
}

hr {
    margin: 20px 0;
}

.field {
    background-color: rgb(40,20,50);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 3px;
    font-family: inherit;
    font-size: 16px;
    padding: 6px;

    box-shadow: rgba(50, 30, 60, 0.5) 2px 2px 10px, rgba(40, 20, 50, 0.4) -2px -2px 10px;

    transition-duration: 200ms;
}

.field:focus {
    outline: none;
    background-color: rgb(55,35,65);
}

.field:hover {
    box-shadow: rgba(60, 40, 70, 0.2) 2px 2px 10px, rgba(50, 30, 60, 0.4) -2px -2px 10px;

}

#username {

}

#password {

}

#submit {
    background-color: rgb(50,30,60);
    box-shadow: rgba(50, 30, 60, 0.2) 5px 5px 10px, rgba(40, 20, 50, 0.4) -5px -5px 10px;
}

#submit:hover {
    background-color: rgb(55,35,65);
    }

@media screen and (max-width: 1200px) {
    .me {
        flex-direction: column;
    }

    img {
        width: 100%;
        height: auto;
    }
}