html {
	scroll-behavior: smooth;
}

body{

    background: #CFD5FF;
    padding-top: 95px;

}

.main {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.main > div {
    width: 100%;
    height: 100%;

}

.header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
}

@media screen and (max-width: 800px) {
    body{
        padding-top: 85px;
    }

    .main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 50px;
    }
    
}