body {
    background: linear-gradient(135deg, #000000, #333333, #000000);
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    opacity: 0;
    animation: fadeIn 1.8s ease forwards;
}

/* Fade in animation*/
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Wrapper that keeps main content centered WITHOUT affecting footer (note to self: dont remove page-content div) */
.page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 60px;
    letter-spacing: 5px;
}

h2 {
    font-weight: 300;
}

p {
    font-size: 18px;
    opacity: 0.8;
}

img {
    margin-bottom: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

.t-icon {
    height: 110px;
    vertical-align: -28px;
    margin-right: -17px;
}

footer {
    padding: 20px 0;
    font-size: 14px;
    opacity: 0.5;
}


.socials {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    font-size: 20px;
    text-decoration: none;
    color: white;
    opacity: 0.6;
    transition: 0.2s;
}

.social-icon:hover {
    opacity: 1;
}


/* Large screen sizing*/
@media (min-width: 1200px) {
    h1 {
        font-size: 70px;
    }

    p {
        font-size: 20px;
    }
}

/* Mobile screen sizing*/
@media (max-width: 600px) {
    body {
        padding-top: 50px;
    }

    h1 {
        font-size: 40px;
        letter-spacing: 3px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

    img {
        width: 120px;
    }

    .t-icon {
        height: 60px;
        vertical-align: -12px;
        margin-right: -18px;
    }
}
