:root {
    --primary-color: #F9A825;
    --secondary-color: white;
    --background-color: black;
    --text-color: white;
    --overlay-opacity: 0.8;
    --content-opacity: 0.9;
    --icon-opacity: 0.7;
}

body{
    margin: 0;
    padding: 0;}
.coverPage {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url(background.jpg) no-repeat center center/cover;
    position: relative;
}

.coverPage:before {
    content: '';
    display: block;
    position: absolute;
    background: var(--background-color);
    opacity: var(--overlay-opacity);
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.__coverPage-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-color);
    height: 50%;
    width: 50%;
    z-index: 1;
    text-align: center;
    opacity: var(--content-opacity);
    padding: 1em;
}

.__coverPage-content h1 {
    font-size: 3.5em;
    color: var(--primary-color);
    opacity: 0.8;
}

.__coverPage-content h2 {
    font-size: 2.2em;
    margin-bottom: 1.5em;
}

.__coverPage-content h3 {
    font-size: 1.6em;
    margin-bottom: 0.8em;
    text-transform: uppercase;
    opacity: var(--icon-opacity);
}

.__coverPage-content p {
    font-size: 0.95em;
    margin-bottom: 1.5em;
    line-height: 1.5;
    opacity: var(--icon-opacity);
}

.socialMedia a {
    color: var(--text-color);
}

.socialIcon {
    margin-right: 10px;
    opacity: var(--icon-opacity);
}

.socialIcon i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border: 2px solid var(--text-color);
    border-radius: 50%;
    padding: 15px;
    height: 25px;
    width: 25px;
    transition: all 0.3s;
}

.socialIcon i:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

@media screen and (min-width: 321px) and (max-width: 1023px) {
    .__coverPage-content {
        width: 100%;
    }
}