body{
    font-family: sans-serif;
    padding: 0px;
    margin: 0px;
    color: rgb(179, 179, 179);
    background-color: rgb(33, 33, 33);
}

.menu{
    font-size:x-large;
    font-weight: bold;
    background-color: rgb(12, 12, 12);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 80px;
    border-bottom: 2px solid black;  
    position: sticky;
    top: 0;  
}

a{
    text-decoration: none;
    color: rgb(179, 179, 179);

}
a:hover{color: white;}


.content {
    padding-top: 20px;
    width: 100%;
    text-align: center;
    background: linear-gradient(120deg, #1db954, #191414);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-weight: bold;
    font-size: 60px;
    color: white;
    margin-bottom: 40px;
}

#feedbackForm{
    box-sizing: border-box;
    width: 550px;
    height: 640px;
    border: 2px solid black;
    border-radius: 12px;
    box-shadow: 0 0 10px rgb(33, 33, 33);
    background-color: rgb(33, 33, 33);
    padding: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    font-size: x-large;  
}

#name {
    width: 80%;
    height: 15px;
    border: 2px solid black;
    border-radius: 12px;
    padding: 10px;
    font-size: large;
}

#message{
    width: 80%;
    height: 200px;
    border: 2px solid black;
    border-radius: 12px;
    padding: 10px;
    font-size: large;
    max-width: 80%;
    min-width: 80%;
    max-height: 200px;
    min-height: 200px;
}

#submit{
    width: 80%;
    height: 40px;
    border: 2px solid black;
    border-radius: 12px;
    background-color: #282828;
    color: rgb(179, 179, 179);
    font-size: large;
    font-weight: bold;
    cursor: pointer;
}

#submit:hover{
    color: white;
}

#siteStats{
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: x-large;
    font-weight: bold;
    background-color: rgb(22, 22, 22);
    box-shadow: 0 0 40px rgb(22, 22, 22);

}