/* General styles */
html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: #F67A0F;
}

body{
    display: flex;
    flex-direction: column;
}
section{
    margin-left: 40px;
    margin-right: 40px;
}

.label-large, .button-light{
    font-family: Poppins;
    font-weight: 500;
    font-family: 16px;
    color: #ffffff;
}

.display-medium{
    font-family: Poppins;
    font-weight: 800;
    font-size: 45px;
    color: #ffffff;
}

.title-medium{
    font-family: Poppins;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
}

.button-light{
 color: #F67A0F;
 padding: 12px 16px;
 background-color: #ffffff;
 border-radius: 4px;
 text-align: center;
 cursor: pointer;
}

#header-logo{
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#logo img{
    width: 128px;
    height: 64px;
}

#header-logo-cta{
    display: flex;
    gap: 8px;
    flex-direction: row;
    align-items: center;
}
#header-logo-cta p{
    margin-bottom: 0;
}

#header-content{
    margin-top: 80px;
    width: 60%;
    align-self: center;
    display: flex;
    flex-direction: column;
}

#header-content-illustration{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 8;
}

#header-content-illustration p{
    font-size: 16px;
    font-style: italic;
}

#header-info p{
    text-align: center;
}

#header-info .title-medium{
    margin-top: 16px;
}

#pre-registration-image{
    margin-top: 40px;
    display: flex;
    justify-content: center;
}


#pre-registration-image img{
    width: 216px;
    height: 64px;
}

#header-image{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

#header-image img{
   max-width: 900px; 
}
/* Mobile screen */
@media only screen and (max-width: 600px) {

    section{
        margin-left: 16px;
        margin-right: 16px;
    }
    #header-logo-cta p:first-of-type{
       display: none;
    }

    #header-content{
        width: 328px;
    }

    .display-medium{
        font-size: 32px;
    }

    #header-info p{
        text-align: left;
    }

    #header-info p:last-of-type{
        font-size: 16px;
    }

    #header-image img{
        max-width: 100%;
     }

     #pre-registration-image img, #logo img{
        height: 48px;
    }
}