@font-face {
    font-family: NotoSans;
    src: url(../fonts/Noto_Sans/NotoSans-VariableFont_wdth\,wght.ttf);
}
html{
    font-family: NotoSans;
    background-color: black;
    /* background-image: url("../media/landingBG.png"); */
    background-image: url("../media/landingBG.png");
    background-size:cover;
    background-attachment: fixed;
    height:100%;
    margin:0px;
    color:white;
    text-align: center;
    padding:0px;
}
body{
    display:flex;
    align-items: center;
    flex-direction: column;
    margin: 0px;
}
#links{ margin-bottom: 5px; }
button,a{
  background-color: black;
  border: 2px solid gold;
  color: gold;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 20px 20px;
  font-size: 16px;
  cursor: pointer;
    :hover&:not(:disabled){
    background-color: rgb(88, 88, 88);
    border: 2px solid rgb(255, 255, 255);
    color:white;
    }
}
a{max-width:200px;}

button:disabled{
    pointer-events: none;
    user-select: none;
    border: 2px solid rgb(87, 87, 87);
    color: rgb(87, 87, 87);
}
#sections{
    width:100%;
    height:100%;
}
hr{
    color:white;
    height:1px;
    width:50%;
}
.custom-divider{
    width:600px;
}

#About{
    flex-direction: column;
    gap:25px;
    justify-content: center;
    align-items: center;
}
.VerticalDivider{
    width:0px;
    height:300px;
    border-right: 1px solid white;
}

@media (max-aspect-ratio:1/1) {
    .VerticalDivider{
        height:0px;
    }
}

@media (aspect-ratio:1/1){
    .VerticalDivider{
        height:0px;
    }
}
h1{
    font-size: 50px;
    margin-bottom: 0px;
}
h2{
    font-size: 25px;
    margin-top: 0px;
    margin-bottom:0px;
}
h3{
    font-size:15px;
    color:rgb(102, 102, 102);
    margin-top:0px;
    margin-bottom: 0px;
}
p{
    font-size:13px;
    font-weight: 400;
}
a{
    width: 100%;
}
#floating-selection-img{
    position: absolute;
    user-select: none;
    -webkit-user-drag: none;
    z-index: -1;
}