    body
    body * {
        margin: 0;
        padding: 0;
        vertical-align: top;
        box-sizing: border-box;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        
    }

body {

    height: 100vh;
    background-image: url(../images/Flour.jpg);
    background-position: center;
    background-repeat: no-repeat;
}


.container {

    width: 1000px;
    margin-left: calc(50% - 500px);
  
}

header.container {

    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    height: 50px;
  
}

.navigation {

    display: flex;
    gap: 30px;

}

.navigation > a {

    text-decoration: none;
    text-transform: capitalize;
    color: white;
    font-weight: bold;


}

.navigation > a:first-child {

    text-transform: uppercase;
    font-weight: bold;

}

.navigation > a:hover {

    text-decoration: underline;
   color: #833817;
}

.navigation >.fa {

    color: white;
}

.account  {

    display: flex;
    align-items: center;
    gap: 20px;
   
}

.account > a  {

    color:white;
    text-decoration: none;
    font-weight: bold;

    }

.account > a:hover {

    text-decoration: underline;
    color: #833817;

}

.account >.mygtukas  {

    color: black;
    text-transform: capitalize;
    border-radius: 8px;
    padding: 5px 10px;
    background-color: white;
    border: solid black 1px;
}

.account >.mygtukas:hover {

    background-color: #833817;
}

main >.container {
    height: calc(100vh - 50px);
    position: relative;
   
}

.cake {

    position: absolute;
    top: 60%;
    margin-right: calc(50% - 500px);
    right: 0%;
    transform: translateY(-50%);
}

    .content {

    position: absolute;
    width: 35%;
    top: 60%;
    margin-left: calc(50% - 500px);
    left: 0%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;


    
}

.content >h1 {

    color: #250F11;
    font-size: 40px;
    text-transform: uppercase;
    font-style: oblique;

}

p {
    width: 100%;
    color: #250F11;
    font-size: 25px;
    text-align: justify;

}

.mygtukas1 {

   
    width: 50%;
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    padding: 5px 10px;
    border: solid black 1px;
    color: #250F11;
    text-transform: capitalize;
    background-color: white;
    font-size: 20px;
}

.mygtukas1:hover {

    background-color: #833817;
}

.socials {

    display: flex;
    flex-direction: column;
    gap:20px;
    position: absolute;
    top: 50%;
    right: 50px;
  
   
}

.fa {

    color: #250F11;
    font-size: 30px;
}







