html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0 0 0;
  padding: 0;
}

.topBar{
    height: 50px;
    width: 100%;
    background-color: #018ABD;
    opacity: 50%;
    display: flex;
    justify-content: space-between;
}

.leftSection{
    width: 100px;
    margin-left: 20px;
}

.rightSection {
    width: fit-content;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.navigationHolder{
    background-color: #97CBDC;
    padding: 10px;
    border-radius: 100px;
}

.navigationButton{
    border: none;
    background-color: transparent;
    font-family: poppins;
    cursor: pointer;
}

.content {
  background-image: linear-gradient(0deg, rgba(0, 69, 129,0.8), rgba(0, 10, 56,0.8)), url('/res/background.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: fit-content;
  width: 100%;
  display: block;
  justify-content: center;
}

.logo {
    height: 200px;
    width: fit-content;

}

.headerHolder {
    display:flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    width: 100%;
    margin-bottom: 20px;
}

.headerHolder .leftSection{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.headerHolder .rightSection{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 9px;
}

.buttonJoin{
    width: 300px;
    background-image: linear-gradient(98deg, rgb(221, 222, 226), rgb(69, 243, 255));
    height: 50px;
    border: #ffffff 2px solid;
    border-radius: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.serverAddress {
    font-family: "Poppins";
    font-weight: bolder;
  color: #000000;
  font-size: 15px;
  stroke-width: 2px;
  stroke-opacity: 10px;
  padding: 10px;
}

.gallery {
    display: flex;
    justify-content: center;
    align-items: center;
}

.photoContainer { 
    width: fit-content;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 40px;
    
}

.photoHolder {
    background-color: whitesmoke;
    width: 400px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: black 1px 2px 5px;
    padding: 5px;
}

.photo {
    height: 90%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.photo img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .2s;
}

.photoLabel {
    font-family: "Minecraft";
    width: 100%;
    height: 10%px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerHolder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 10px;
}

.footerText {
    margin-top: 10px;
    font-size: 10px;
    font-family: Poppins;
    line-height: 10px;
    color: whitesmoke;
}


.photoHolder:hover img{
    transform: scale(1.5);
}

.grid2x {
    display: grid;
    grid-template-columns: 1fr 1fr;
}