@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

header {
    text-align: center;
    background-color: #2f6999;
    margin: 0;
    padding: 10px;
    color: white;
}

nav {
    margin: 25px;
}

nav a {
    color: white;
    background-color: #1c4f79;
    text-decoration: none;
    border-radius: 30px;
    padding: 16px;
    font-size: 16px;
    transition: background-color 250ms;
}

nav a:hover {
    color: white;
    background-color: #0e3657;
}

main {
    text-align: center;
}

.button {
    display: inline-block;
    color: white;
    background-color: #1c4f79;
    text-decoration: none;
    border-radius: 30px;
    padding: 16px;
    margin: 10px;
    font-size: 16px;
    transition: background-color 250ms;
}

.button:hover {
    color: white;
    background-color: #0e3657;
}

h2 {
    font-size: 30px;
}

a {
    color: black;
    text-decoration: underline;
    transition: color 250ms;
}

a:hover {
    color: #0000EE;
}

.status, .rename, .newmessage, .subject, .project {
    padding: 10px;
}

input[type="text"], input[type="password"], textarea, select {
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
    border-radius: 30px;
    border: 2px solid #999999;
}

textarea {
    width: 300px;
    height: 500px;
}

@media only screen and (min-width: 768px) {
    textarea {
        width: 650px;
    }
}

@media only screen and (min-width: 992px) {
    textarea {
        width: 900px;
    }
}

@media only screen and (min-width: 1200px) {
    textarea {
        width: 1100px;
    }
}

button, input[type=submit] {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    color: white;
    background-color: #1c4f79;
    text-decoration: none;
    border-radius: 30px;
    padding: 16px;
    margin: 10px;
    font-size: 16px;
    transition: background-color 250ms;
    cursor: pointer;
    border: none;
}

button:hover, input[type=submit]:hover {
    color: white;
    background-color: #0e3657;
}

.listContainer {
    display: flex;
    text-align: left;
    justify-content: center;
}
