@font-face {
  font-family: 'ms-serif-1';
  src: url('/fonts/ms-sans-serif-1.otf.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
    font-family: 'ms-serif-1';
    color: white;
    
    border-radius: 10px;
    border: 3px;
    stroke-width: 2px;

    box-sizing: border-box;
    margin: 0;

    background-attachment: fixed; 
}
body{
    background-image: url("../images/stars_red_grain.png");
    background-repeat: no-repeat;
    background-attachment: fixed;  
    background-size: cover;
}
h1{
    color: white;
    font-size: 6em;
}
h2{
    font-size: 2em;
    margin-top: 50px;
    margin-bottom: 10px;
}
ul{
    padding-left:0px;
    text-align: start;
}
p, li{
    font-size: 1.5em;
}
.grid{
    position: fixed;
    width: 100%;
    opacity: 50%;
    z-index: -1;
}
.border-left{
    top: 0px;
    width: 20%;
    position: absolute;
}
.border-right{
    top: 0px;
    right: 0;
    width: 20%;
    position: absolute;
}
.bounding-box{
    width: 40%;
    margin: 25px auto;
    text-align: center;

} 
.computer{
    margin: auto;
    width: 100%;
}
.want-hbox{
    margin: auto;
    display: flex;
    flex-direction: row;


    justify-content: center;
    gap: 20%;
}
.want-vbox{
    display: flex;
    flex-direction: column;

    gap: 10px;
}
.want-entry{
    display: flex;
    flex-direction: row;

    justify-content: start;
    align-items: center;

    gap: 10px;
}
.want-entry img{
    width: 50px;
    height: 50px;
}

.section-hbox{
    display: flex;
    flex-direction: row;

    justify-content: space-between;
    align-items: center;
    gap: 20%;
}

.section-hbox img {
    width: 150px;
}

@media (max-width: 768px) {
    h1{
        color: white;
        font-size: 3em;
    }
    h2{
        font-size: 2em;
        margin-top: 50px;
        margin-bottom: 10px;
    }
    p, li{
        font-size: 1em;
    }
    .section-hbox{
        justify-content: center;
    }
}