div {text-align: center; position: absolute;}
.hide { display:none }

body, html {
    margin: 0;
    padding: 0;
    height:100%;
    background-color: rgb(34, 32, 32);
    overflow: hidden;
    margin:0; padding:0;
    display:flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
@font-face {
    font-family: poppins;
    src: url(files/Poppins-Regular.ttf);
}

h1 {
    color: rgb(182, 134, 44);
    font-family:poppins;
    font-size: 50px;
}
h2 {
    color: rgb(255, 255, 255);
    font-family:poppins;
    font-size: 20px;
}
.beginbut {
    color: rgb(182, 134, 44);
    font-family:poppins;
    font-size: 50px; 
}
p {
    color: rgb(182, 134, 44);
    font-family:poppins;
    display: inline;
    font-size: larger;
}
a {
    color: rgb(182, 134, 44);
    font-size: 80px;
    text-decoration: none;
}

.fortnite:hover {
    text-decoration: underline;
}

.hypelink {
    color: rgb(255, 255, 255);
    font-size: 17px;
    text-decoration: none;
}
.hypelink:hover {
    color: rgb(182, 134, 44);
    font-size: 17px;
    text-decoration: none;
}

.containerize {
    position: relative;
    display: inline-block;
    height: 0%;
    line-height: 1;
    vertical-align: top
}

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.horcenter {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
}

.playpause {
    color: rgb(255, 255, 255);
    height: 1.5em;
}

.fadeIn {
    animation: unblink 0.7s ease-in forwards; /* Add transition effect */
}
.fadeOut {
    animation: blink 0.7s ease-out forwards; /* Add transition effect */
}
.cursor {
    position: absolute;
    width: 2px; /* Adjust width as needed */
    height: 1.2em; /* Adjust height as needed */
    background-color: white; /* Adjust color as needed */
    animation: blink 0.5s ease-in-out infinite alternate; /* Adjust animation duration as needed */
    margin-bottom: 1em;
    margin-left: 2px;
}
@keyframes blink {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes unblink {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}