html, body {
    height: 100%;
    margin: 0px;
    
}

.landing {
    height: 100vh;
    background-image: url('./background.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header {
    padding-top: 20px;
    padding-left: 60px;
}

.container {
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 65vh;
}

.text {
    color: white;
    font-family: "Poppins", serif;
    font-size: 32px;
    font-weight: 300;
    width: 40vw;
}


.btns {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
}

.footer {
    width: 100%;
    position: absolute;
    bottom: 0px;
    display: flex;
    justify-content: center;
    gap: 20px;
    color: white;
    font-family: "Poppins", serif;
}

a {
    color: white;
}
