@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --font-family: "Poppins", sans-serif;
    --color-white: whitesmoke;
    --color-primary: #438bcd;
    --color-primary-darker: #20609b;
    --color-secondary: #34495E;
    --shadow-default: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    --shadow-text: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    min-height: 100vh;
    font-family: var(--font-family);
    overflow-y: auto;
    overscroll-behavior-y: contain;
    display: flex;
}

section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    padding: 20px;
    overflow: hidden;
    text-align: center;
    background: url('../images/background-landing.jpg') no-repeat 40% 40%/cover;
}

section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
}

section > * {
    position: relative;
    z-index: 2;
}

header {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
}

.logo-image {
    display: block;
    margin: 10px auto 0;
    width: 400px;
    object-fit: contain;
    box-shadow: var(--shadow-default);
}

.content {
    margin-top: 100px;
    max-width: 800px;
}

.info h2 {
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 55px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: var(--shadow-text);
}

.info h2 span {
    display: block;
    color: var(--color-secondary);
    font-size: 50px;
    font-weight: 600;
}

.info p {
    margin-bottom: 30px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    text-shadow: var(--shadow-text);
}

.info-btn {
    display: inline-block;
    padding: 10px 25px;
    color: var(--color-white);
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    background: var(--color-primary);
    transition: background 0.3s;
    box-shadow: var(--shadow-default);
}

.info-btn:hover {
    background: var(--color-primary-darker);
}

.media-icons {
    margin-top: 25px;
    text-shadow: var(--shadow-text);
    transition: scale 0.3s ease-in-out;
}

.media-icons:hover {
    scale: 1.1;
}

#countdown {
    margin-top: 20px;
    color: var(--color-white);
    font-size: 20px;
    font-weight: 400;
    text-shadow: var(--shadow-text);
}

@media (max-width: 768px) {
    .info h2 {
        font-size: 40px;
    }

    .info h2 span {
        font-size: 35px;
    }

    .info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .info h2 {
        font-size: 32px;
    }

    .info h2 span {
        font-size: 28px;
    }

    #countdown {
        font-size: 16px;
    }
}