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

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

#languageDiv {
    display: flex;
    justify-content: flex-end; /* Aligns children to the right */
    align-items: center; /* Vertically centers children */
    width: 100%; /* Ensures the header spans the full width */
}

select {
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: palegreen;
    background-color: dimgray;
    font-size: 14px;
    cursor: pointer;
    appearance: none; /* Removes default styling */
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px;
}

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;
}

#ipButton{
    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;
}

#ipButton:hover{
    stroke: darkseagreen;
    color: darkseagreen;
    border-color: darkseagreen;
}

button:hover line{
    stroke: darkseagreen;
}

button:hover rect{
    fill: 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;
}

.snowflake {
  position: fixed;
  top: -10px;
  color: white;
  font-size: 1em;
  user-select: none;
  pointer-events: none;
  z-index: -1;
}