h1{
    font-family: fantasy;
    color: lightgray;
}

.container{
    display: inline-block;
    background-color: dimgray;
    padding: 35px;
    width: 512px;
    margin: 10px;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("./background.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover; /* Resize the background image to cover the entire container */
    text-align: center;
    font-size: 25px;
    color: white;
    font-family: sans-serif;
}

hr{
    border-style: solid;
}

button{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: palegreen;
    border-color: palegreen;
    border-style: solid;
    border-width: 4px;
    font-size: 40px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
}
line{
    stroke: palegreen;
}
rect{
    fill: palegreen;
}

button.line:hover{
    stroke: darkseagreen;
}

button:hover line{
    stroke: darkseagreen;
}

button:hover rect{
    fill: darkseagreen;
}

button:hover{
    color: darkseagreen;
    border-color: darkseagreen;
}

p{
    color: lightgray;
    font-size: 20px;
}

#discord{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5865f2;
    border-radius: 50%;
    padding: 10px;
    width: 40px; /* only necessary for mobile */
}

img{
    width: 40px;
    height: 40px;
}

.release{
    font-weight: bold;
}

.green{
    color: palegreen;
}

#social{
    display: flex;
    justify-content: center;
    align-items: center;
}

#join{
    margin-left: 15px;
}

#contact-div{
    display: flex;
    justify-content: right;
}

#contact{
    font-size: 12px;
}

#bottom-container{
    padding-top: 15px;
    padding-bottom: 0px;
}