.content {
    text-align: center;
    color: white;
    z-index: 1;
    font-family: 'Roboto Mono', monospace;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    font-size: 70px;
    transition: transform 0.2s;
}

h3 {
    font-size: 20px;
    transition: transform 0.2s;
}

.social-logo {
    padding-left: 15px;
    padding-right: 10px;
    width: 30px;
    height: 30px;
    transition: transform 0.2s;
}

.social-logo:hover {
    transform: scale(1.2);
}

h1:hover {
    transform: scale(1.5);
}

h3:hover {
    transform: scale(1.1);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
}