@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
body,
html {
    background-color: #000;
    overflow: hidden;
    height: 100%;
}

p,
.maintext,
.subtext {
    color: #fff;
    font-family: 'Roboto Mono', monospace;
}

.bg-image {
    background-image: url('../img/background.gif');
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 90%;
    height: 35%;
    max-width: 580px;
    border-radius: 5px;
}

.header {
    position: absolute;
    top: 15%;
    text-align: center;
    width: 100%;
    padding: 0%;
    margin: 0%;
}

#intro-text {
    line-height: 200px;
    height: 200px;
    border: 3px solid black;
    text-align: center;
}

.maintext {
    font-size: 2.5rem;
    padding: 0%;
    margin: 0%;
    padding-bottom: 5px;
}

.subtext {
    font-size: 1rem;
    font-style: italic;
}

#subtext {
    display: inline;
}

.footer {
    position: absolute;
    bottom: 15%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-logo {
    padding-left: 20px;
    padding-right: 20px;
    transition: transform 0.2s;
    width: 40px;
    height: 40px;
}

.social-logo:hover {
    transform: scale(1.5);
}