*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
    top:0;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 75px;
    position: fixed;
    width: 100%;
    background-color:cadetblue;
}

.logo{
    flex-grow: 1;


}

.logo a img{
    width: 60.5px;
}

nav{
    display: flex;
    flex-direction: row;
}

nav ul{
    display: flex;
    flex-direction: row;
}

nav ul li{
    list-style: none;
    margin: 0px 15px;
}

nav ul li a{
    text-decoration: none;
    color: white;
    background-color: black;
    border-radius: 12.5px;
    border: 0.25px solid white;
    padding: 7.5px 12.5px;
    font-size: 17.5px;

}

nav ul li a:hover{
    color: black;
    background-color: white;
    border: 0.25px solid black;
    box-shadow: 0px 0px 10px white;
    
}


.mainOne{

    min-height: 100vh;
    background:  url(../img/space.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mainTwo{
    margin-top: 75px;
    background:  url(../img/money.png);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;



}

.ordersList {
margin-top: 35px;
}

table{
    background-color: white;
    border: 1px solid black;
}

.topTr{
 background-color: gray;
 color: white;
}

table tr td{
border: 0.5px solid black;
padding: 5px 10px;
}


.logForm form{
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;

}

.logForm form input {
    margin: 7.5px;
    background-color: transparent;
    border:none;
    border-bottom:1px solid white;
    text-align: center;
    color: white;
    font-size: 25px;
}

.logForm form input::placeholder {
 text-align: center;
 color: white;
}

.logForm form input[type="submit"]{
margin-top: 25px;
background-color: purple;
color: white;
border: 0.5px solid white;
padding: 5px;
border-radius: 10px;
cursor: pointer;
}

.logForm form input[type="submit"]:hover{
    background-color: white;
    color: purple;
    border: 0.5px solid purple;
    box-shadow: 0px 0px 10px white;
}

.logForm form label{
    color: white;
    cursor: pointer;
}
.updateForm{
    margin-top: 25px;
}

.updateForm form{
    text-align: center;
    background-color: white;

}

.updateForm form p{
 font-size: 17.5px;
 padding: 5px 15px;
 background-color: black;
 color: white;

}

.updateForm form input{
    text-align: center;
 font-size: 17.5px;
}

.updateForm textarea{
    width: 250px;
    margin: 5px;
    height: 150px;
}

.updateForm select{
    margin: 5px;
}

.endPhase{
    padding: 10px;
    background-color: black;
}

.updateForm form input[type="submit"]{
padding: 5px 15px;
margin: 0px 25px;
background-color:seagreen;
border: 0.25px solid white;
border-radius: 7.5px;
color: white;
cursor: pointer;
}

.updateForm form input[type="submit"]:hover{
    background-color: white;
    border: 0.25px solid black;
    color: black;
    box-shadow: 0px 0px 10px white;


}

.endPhase a{
    text-decoration: none;
    padding: 5px 15px;
    background-color:darkred;
    border: 0.25px solid white;
    border-radius: 7.5px;
    color: white;
    cursor: pointer;

}

.endPhase a:hover{
    background-color:white;
    border: 0.25px solid black;
    color: black;
    box-shadow: 0px 0px 10px white;
}


.message p{
    margin:35px;
    font-size: 20px;
    background-color: rgba(240, 248, 255, 0.705);
    color: darkgreen;
    padding: 5px 15px;
}

.secret{
    margin: 50px;
    background-color: black;
    padding: 25px;
    border: 3px solid white;
    border-radius: 10px;



}

.secret form{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color: black;
    padding: 25px;


}

.secret form input{
    margin: 5px;
    text-align: center;
    padding: 5px;
}

.secret form input::placeholder{

    text-align: center;
}

.secret form input[type="submit"]{
padding: 5px 10px;
background-color: black;
color: white;
border-radius: 10px;
border: 1.5px solid white;
cursor: pointer;
}

.secret form input[type="submit"]:hover{
    background-color: white;
    color: black;
    border: 1.5px solid black;
    box-shadow: 0px 0px 10px white;
    }
    

.secret h4{
    color: green;
    background-color: gray;
    text-align: center;

}

.secret p{
    color: black;
    background-color: white;
    text-align: center;
}

