body {
    background-color: #3D3B40;
}

body {
    margin: 0;
    padding: 0;
}

main {
    margin: 20px auto;
    padding: 20px;
    min-height: 50%;
}

h1 {
    font-family: "Outfit", sans-serif;
    color: white;
    font-size: 40px;
}

h2 {
    font-family: "Outfit", sans-serif;
    color: white;
    font-size: 20px;
}

p {
    font-family: "Outfit", sans-serif;
    color: white;
    font-size: 20px;
    text-align: justify;
}

#profil {
    width: 300px;
}

section {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
}

section > div {
    max-width: 500px;
}

/* Projects */

#projects {
    display: flex;
    flex-direction: row;
    gap: 100px;
    text-align: center;
}

#projects img {
    width: 200px;
    border-radius: 20px;
}

.project {
    display: flex;
    flex-direction: column;
}

.error-message {
    color: red;
}

/* Login and Register */

form {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 25%;
}

#dashboard {
    display: flex;
    flex-direction: column;
}

form label {
    font-family: "Outfit", sans-serif;
    color: white;
    font-size: 20px;
    text-align: justify;
    text-align: left;
}

form input {
    background-color: #F8EDFF;
    border-radius: 10px;
    border: none;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    
}

form input:focus {
    outline: none;
}

form button {
    background-color: #525CEB;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-family: "Outfit", sans-serif;
    color: white;
    font-size: 20px;
}

form button:hover {
    transition: 0.2s;
    font-weight: bold;
}

form button:not(:hover)
{
    transition: 0.2s;
}