body {

    background-image: url(../images/Shoes.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 100vh;
    gap: 20px;
    flex-direction: column;
    align-items: center;
   
}

.container {

    width: 100%;
    position: relative;
     
}

header.container {

    display: flex;
    flex-direction: row;
    justify-content:flex-end;
    align-items: center;
    gap: 20px;

}

header.container > *:first-child {

    margin-right: auto;
}

.menu {

    display: flex;
    gap:15px;
}

.menu > a{

    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    color: white;
}

.menu > a:hover {

    color:red;
    text-decoration: underline;
}

.menu > a:first-child {

    color:red
}

.choises {

    color:white;
    padding: 0 10px;
}

.fa {

padding: 0 5px;

}

main.container {

    display: flex;
    position: relative;
    height: 100vh;

}


@media (min-width: 300px) {
    .container {
        width: 200px;
    }
    
}

@media (min-width: 400px) {
    .container {
        width: 300px;
    }
    
}

@media (min-width: 600px) {
    .container {
        width: 500px;
    }
    
}

@media (min-width: 800px) {
    .container {
        width: 700px;
    }
    
}

@media (min-width: 1000px) {
    .container {
        width: 900px;
    }
    
}

@media (min-width: 1200px) {
    .container {
        width: 1100px;
    }
    
}
