@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --color-orange: #f8a815;
    --color-navy: #152037;
    --color-dark: #181818;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-dark);

}

.w-full {
    width: 100%;
}

.h-screen {
    height: 100vh;
}

.main-cover-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-cover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    width: 10rem;
    height: auto;
}

.cover-text-block {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: var(--color-navy);

    h1 {
        line-height: 1;
        color: #FFF;
    }
    a {
        color: #FFF;
    }
}