:root{
    --primary-color: #126782;
    --accent-color: #FB8500;
}

*{
    box-sizing: border-box;
}

h1, h2, h3, h4, p{
    font-family: "Poppins", sans-serif;
    color: white;
}

h1{
    font-weight: 900;
    font-size: clamp(1.6rem, 4vw, 8rem);
    margin: 30px 0px 0px 0px;
}

p{
    font-size: clamp(.8rem, 1vw, 1.2rem);
}

hr{
    border: 1px solid var(--accent-color);
    width: 40vw;
}

body{
    background-color: var(--primary-color);
    margin: 0px;
    height: 100vh;
    position: relative;
}

.background-img{
    display: block;
    position: absolute;
    aspect-ratio: 16/9;
    object-fit: cover;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
}

.overlay{
    height: 100vh;
    width: 100%;
    position: absolute;
    background-color: var(--primary-color);
    opacity: .4;
}

.content-container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content{
    position: absolute;
    opacity: 1;
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo{
    height: clamp(2rem, 5vw, 4rem);
}
