@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
* {
    color: white;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html {
    scroll-behavior: smooth;   
}
body {
    background-color: rgb(14, 15, 16);
    padding: 0;
    margin: 0;
    overflow: hidden;
}
h1 {
    font-size: 5vh;
    line-height: 3vh;
}
iframe {
    width: 100%;
    height: 100vh;
    display: block;
    border: none;
    padding: 0;
    margin: 0;
}
.center-content {
    width: 100%;
    height: 100vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}
header {
    position: fixed;
    width: 100%;
}
header * {
    font-size: 2.3vh;
    list-style: none;
    background-color: rgb(35, 35, 35);
}
#header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1vh 10%;
}
nav a {
    padding: 0px 1vw;
    transition: all 0.3s ease 0s;
}
nav a:hover {
    color: rgba(159, 222, 134, 0.8);
    /* text-shadow: 0px 0px 10px white; */
}
button {
    padding: .7vh 1.4vw;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out 0s;
}
button:hover {
    background-color: rgba(159, 222, 134, 0.65);
}
input[type=text] {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    display: block;
    margin-bottom: 2vh;
    width: 100%;
}
div > button {
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid rgb(0, 217, 255);
    width: 100%;
}