* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    background-color: #ff2f2f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header img {
    width: 250px;
    margin-top: 20px;
}

.header h1 {
    color: #11131A;
    text-align: center;
    font-size: 50px;
    padding-bottom: 50px;
    margin-top: 15px;
    font-family: "Stalinist One", sans-serif;
}

/* Clock Card Styles */
.clockCard {
    padding-top: 30px;
    padding-bottom: 10px;
    margin-top: -20px;
    background-color: #11131A;
}

.clockCard h2,
#clock,
body,
.footer p {
    font-family: "Syne", sans-serif;
    font-weight: bolder;
    color: #ff2f2f;
    text-align: center;
    line-height: 1;
    font-size: 30px;
}

p {
    margin: 20px 40px;
    font-family: "Syne", sans-serif;
    font-weight: bold;
    color: #ff2f2f;
    text-align: center;
    line-height: 1;
    font-size: 30px;
}

/* Contact */

.contact p,
.contact a {
    font-family: "Syne", sans-serif;
    font-weight: bold;
    color: #ff2f2f;
    text-align: center;
    line-height: 0.5;
    font-size: 30px;
}

.contact h1 {
    font-size: 40px;
    font-family: "Syne", sans-serif;
    font-weight: bolder;
}

.contact {
    background-color: #11131A;
    padding-bottom: 30px;
    margin-top: -30px;
    padding-top: 20px;
}

.contact a {
    padding-bottom: 20px;
}

/* Info */

.info {
    background-color: #ff2f2f;
    padding-bottom: 5px;
    padding-top: 20px;
}

.info p {
    font-family: "Syne", sans-serif;
    font-weight: bold;
    color: #11131A;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1;
    font-size: 30px;
}

.info h1 {
    color: #11131A;
    font-size: 40px;
    text-align: center;
    font-family: "Syne", sans-serif;
    font-weight: bolder;
}

/* These comments useless af b */

.images {
    background-color: #11131A;
    padding-bottom: 30px;
}

.img-wrapper {
    margin-top: -10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.img-wrapper img {
    border-radius: 20px;
    margin: 15px 0;
    width: 70%;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.img-wrapper img.fade-in {
    opacity: 1;
    transform: scale(1);
}