* {
    box-sizing: border-box;
}

html {
   height: 100%;
}

body { 
    font-family: 'Oswald', Helvetica, sans-serif;
    margin: 0;
    display: grid;
    grid-template-rows: 4.2rem auto;
    grid-template-areas: "header"
                          "main";
    height: 100%;
}

.main-header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    padding: 0.5rem 1rem;
    z-index : 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.16);
}

.image-logo__abba {
    height: 2.8rem;
}

.image-logo__sura {
    height: 2.5rem;
}

main {
    /*margin-top: 2.5rem;*/
    grid-area: main;
    padding-top: 3rem;
    grid-template-rows: repeat(3, auto);
    display: grid;
    Justify-items: center;
}

.section-title{
    display: grid;
    background: white;
    grid-template-columns: repeat(12, 1fr);
    Justify-items: center;
    row-gap: 0.5rem;
}

.section-title__subtitle{
    font-size: 0.8rem;
    grid-column: 2 / 12;
    align-self: end;
    font-weight: bold;
    text-align: center;
}

.section-title__title {
    color: #fbae08;
    font-weight: bold;
    text-align: center;
    font-size:  0.875rem;
    grid-column: 2 / 12;
    place-self: center;
}

.section-title p {
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    grid-column: 3 / 11;
    place-self: center;
}

.form {
    grid-column: 3 / 11;
    align-self: center;
}

@media (min-width: 12.7rem){

}

@media (min-width: 22rem){
    .image-logo__abba {
        height: 3.6rem;
    }
    
    
}

@media (min-width: 43.5rem){
    .section-title__title {
        font-size: 1.8rem;
    }
}



/*
#f3e556
#7ef6af
#fcc95a*/