body {
    opacity: 1;
    font-family: Verdana;
    margin: 0;
    padding: 0;
    letter-spacing: 0.075rem;
    animation: fade-in 0.325s ease-in-out forwards;
    background-color: #ffffff;
    color: #c53e53;
}

a {
    text-decoration: none;
}

hr {
    border: 1px solid #c53e53;
    height: 0px;
}

.second {
    width: 90%;
    opacity: 0.9;
}

p,
h2 {
    overflow: hidden;
    height: 1.15em;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding-top: 100px;
    padding: 20;
}

h3 {
    font-weight: 200;
    font-size: 1.125rem;
    text-align: center;
    margin: 15px;
}

.links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.links a {
    background-color: #c53e53;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.125rem;
}

.profile-container {
    margin: auto;
    width: fit-content;
}

.profile {
    display: flex;
    align-items: center;
    padding: 20px;
}

.profile img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #c53e53;
}

.profile h1 {
    margin: 0;
    font-size: 30px;
    font-weight: bold;
}

.buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: 600;
    background-color: #c53e53;
    border-radius: 8px;
    margin: 10px;
    padding: 12px;
    width: 8rem;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 1px black;
    letter-spacing: initial;
}

.short:hover {
    opacity: 0.9 !important;
    width: 8.5rem;
}

.long {
    background-color: #505a65;
    /* background-color: #201d1c; */
    width: 32rem;
}

.long:hover {
    width: 33rem;
}

.button span {
    font-size: 1rem;
}

footer {
    text-align: center;
    font-size: 0.85rem;
    padding-bottom: 15px;
}

footer p {
    margin: 5px;
}

@media (max-width: 1150px) {
    .short {
        width: 25%;
    }
    .short:hover {
        width: 26%;
    }
    .long {
        width: 85%;
    }
    .long:hover {
        width: 87%;
    }
}

@media (max-width: 768px) {
    .container {
        padding-top: 0;
        width: 100%;
    }

    .buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .buttons-container:last-of-type {
        padding-bottom: 10px;
    }

    .button {
        width: 80% !important;
    }

    .profile-container {
        width: 100%;
    }

    .profile {
        display: block;
        text-align: center;
    }

    hr {
        margin: 0;
        margin-bottom: 20px;
    }

    .gallery,
    h3 {
        display: none !important;
    }

    .hide {
        display: none;
    }
}

@media (orientation: landscape) {
    .profile h1 {
        animation: fade-left 0.25s ease-in-out forwards;
    }

    footer {
        animation: fade-bottom 0.25s ease-in-out forwards;
    }
}

/* Set at 100% for the first 5% of the animation to tell Google there is content on the page */
@keyframes fade-in {
    0% {
        opacity: 1;
    }
    5% {
        opacity: 0;
    }
    75% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}
@keyframes fade-left {
    0% {
        margin-left: -15px;
    }

    100% {
        margin-left: 0px;
    }
}
@keyframes fade-bottom {
    0% {
        margin-top: -10px;
    }

    100% {
        margin-bottom: 0px;
    }
}
