* {
    margin: 0;
    padding: 0;
    --custom-cursor: auto;
}

html {
    cursor: var(--custom-cursor), auto !important;
    min-height: 100vh;
    background: linear-gradient(180deg, #E2DBC8, #C0A886);
}

body {
    cursor: var(--custom-cursor), auto !important;
    font-family: 'Courier New', Courier, monospace;
    width: 100%;
    min-height: 100vh;
}

.container {
    width: 100%;
    min-height: 60vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.container-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 5% 2%;
    max-width: 20%;
}

.profile img {
    max-width: 100%;
    border-radius: 20px;
    border: 2px solid black;
}

.about h1 {
    width: 100%;
    font-size: 40px;
    margin-bottom: 5%;
}

.about h2 {
    width: 100%;
}

.about p {
    font-size: 24px;
}

.footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer p {
    padding: 10px;
}

.toggle * {
    cursor: inherit;
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.links ul {
    list-style: none;
    margin: 10px;
    padding-left: 20%;
}

.links ul li {
    width: 100%;
}

.links ul li a {
    display: flex;
    align-items: center;
    cursor: inherit hand;
    font-size: 32px;
    padding: 5px;
    width: 100%;
    text-decoration: none;
    color: darkolivegreen;
    font-weight: bold;
    transition: color 0.5s ease, background 0.5s ease;
    text-wrap: nowrap;
}

.links ul li a img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.links a:hover {
    color: olive;
    background: rgba(255, 255, 255, 0.2);
}

.tiny {
    font-size: 10px;
    transform: translate(-5px, -5px);
}

/* animation stuff */

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        scale: 0.5;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}

.delay-1 {
    animation-delay: 0.25s;
}
.delay-2 {
    animation-delay: 0.5s;
}
.delay-3 {
    animation-delay: 0.75s;
}
.delay-4 {
    animation-delay: 1s;
}
.delay-5 {
    animation-delay: 1.25s;
}
.delay-6 {
    animation-delay: 1.5s;
}

/* mobile */

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .container-section {
        max-width: 90%;
        width: 90%;
        justify-content: center;
        align-items: start;
    }

    .about {
        align-items: center;
    }

    .about h1 {
        font-size: 32px;
    }

    .about p {
        font-size: 20px;
    }

    .links ul li a {
        font-size: 24px;
    }

    .footer {
        position: relative;
        bottom: auto;
    }

    .toggle {
        display: none;
    }
}