.container {
    text-align: center;
    display: flex;
    flex-direction: column;
}

/* Page wrapper */
.pagewrp {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100vh;
    align-content: center;
}

@media (max-width: 768px) {
    .pagewrp {
        height: 112vh;
                h2 {
            font-size: 42px;
        }
        h1 {
            font-size: 70px;
            line-height: 80px;
        }
    }
}

@media (max-width: 480px) {
    .pagewrp {
        height: 110vh;
        h2 {
            font-size: 42px;
        }
        h1 {
            font-size: 70px;
            line-height: 80px;
        }
    }
}

/* Social links */
.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 32%;
}

@media (max-width: 783px) {
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Base styles */
body {
    background-image: linear-gradient(180deg, #FFFFFF 32%, #FF9793 69%);
    font-family: "Poppins", sans-serif;
}

body h1 {
    font-size: 125px;
    .orange-header-text {
        color: #FF6A4D;
    }
}

body h2 {
    font-size: 52px;
    font-weight: 300;
}

/* Links */
a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 93px;
    height: 93px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background-color: black;
    color: white;
    font-weight: 300;
    border: 2px solid white;
    transition: transform 0.3s, background-color 0.3s;
}

a:hover {
    background-color: #B21500;
    transform: scale(0.9);
}

a.orange-btn {
    background-color: #FF6A4D;
}

a.orange-btn:hover {
    background-color: #B21500;
    transform: scale(0.9);
}

/* CSS reset bits */

/* 1. Use a more intuitive box-sizing model */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* 3. Ensure images are responsive */
img {
    max-width: 100%;
    display: block;
}

/* 4. Inherit fonts for form elements */
input,
button,
textarea,
select {
    font: inherit;
}

.fade-in-header {
	opacity: 3;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 2s;
}
.fade-in-suheader {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 3s;
}

.fade-in-social {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 4s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
