*{
    box-sizing: border-box;
    margin:0;
    padding:0;
}
body,html{
    width: 100vw;
    background-color: rgb(0,0,0);
}
#background{
    position: absolute;
    top:0;
    left:0;
    width: 100vw;
    min-height: 100vh;
    background-image: url(https://images.pexels.com/photos/371917/pexels-photo-371917.jpeg?cs=srgb&dl=architecture-clouds-dark-371917.jpg&fm=jpg);
    opacity:0.5;
    background-size: cover;
    background-position: fixed;
}
.main-info{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}
#heading{
    width: 80vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    color: white;
    text-align: center;
    font-family: 'Nunito', sans-serif;
}
#logo{
    margin: 20px auto;
    width: 300px;
    height: 356px;
    background-image: url(./accclimate-logo.svg);
    background-size: 100%;  
}
