@font-face {
    font-family: Tech;
    src: url(boxigen.regular.ttf);
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: url("background.jpg");
    margin: 0;
    color: white;
    font-family: monospace;
    text-align: center;
    font-size: 20px;
}

#container {
    text-align: center;
    border-radius: 10px;
    background-color: rgb(50, 50, 50);
    width: 60%;
    min-height: 70%;
    height: fit-content;
    padding: 15px;
    position: absolute;
    top: 200px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    margin-top: 0px;
}

#heading {
    background-color: black;
    width: 100%;
    position: absolute;
    height: 35%;
}

#title {
    font-family: Tech;
    font-size: 60px;
}

#subtitle {
    font-family: Tech;
    font-size: 30px;
}

header {
    position: relative;
    background-size: contain;
    height: 100vh;
}

.button {
    width: 20%;
    height: fit-content;
    background-color:  #ff8800;
    text-align: center; 
    padding: 0px; 
    transition: all 0.3s ease; 
    color: white;
    font-size: x-large;
    text-decoration: none;
    font-family: Tech;
}

#buttons {
    text-align: center;
    margin-top: 50px;
}

.button:active {
    background-color: black;
}

#button1 {
    top: 20%;
    left: 10%;
}

#button2 {
    top: 20%;
    left: 30%;
}

#button3 {
    top: 20%;
    left: 50%;
}

#button4 {
    top: 20%;
    left: 70%;
}

.download {
    border-radius: 5px;
    background-color: rgb(73, 111, 214);
    text-decoration: none;
    color: white;
    padding: 10px;
}

.download:hover {
    background-color: rgb(47, 90, 208);
}

#info {
    font-size: 40px;
    color: #57a8d4;
}

#calc-installation, #pass-installation {
    border: #ebebeb 3px solid;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    margin-left: 20%;
    position: fixed;
    background-color: white;
    color: black;
    font-family: sans-serif;
}

.code {
    font-family: monospace;
}

#information {
    margin-top: 20%;
    height: 100vh;
    font-family: sans-serif;
    color:rgb(70, 70, 70);
}

#about-games {
    padding-right: 15px;
    margin-left: 10%;
    text-align: left;
    width: 20%;
    display: inline;
    float: left;
}

#about-java {
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
    width: 20%;
    display: inline;
    float: left;
}

#about-minecraft {
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
    width: 20%;
    display: inline;
    float: left;
}

#about-calculator {
    padding-left: 15px;
    text-align: left;
    width: 20%;
    display: inline;
    float: left;
}

#information i {
    color:  #ff8800;
    font-size: 40px;
}

#about {
    font-family: Tech;
    font-size: xx-large;
    padding: 20px;
}

#scrollup {
    display: none;
    position: fixed;
    bottom: 20px; 
    right: 30px; 
    z-index: 99;
    border: none; 
    outline: none; 
    background-color: #ff8800; 
    color: white; 
    cursor: pointer; 
    padding: 15px; 
    border-radius: 50%; 
    font-size: 18px;
  }

  #back {
    position: fixed;
    bottom: 20px; 
    left: 30px; 
    z-index: 99;
    border: none; 
    outline: none; 
    background-color: #ff8800; 
    color: white; 
    cursor: pointer; 
    padding: 15px; 
    border-radius: 50%; 
    font-size: 18px;
  }
  
  #scrollup:hover, #back:hover {
    background-color: #555;
  }