@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    background-image: url("images/Home-image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.header {
    width: 100%;
    height: 60px;
    background-color: black;
    display: flex;
    
}

.logo img{
    width: 15%;
    display: flex;
    align-items: center;
    margin-left: 40%;
    margin-top: 2px;
}

.nav-items{
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.nav-items a{
    display: flex;
    justify-content: flex-end;
    padding: 22px 25px;
    text-decoration: none;
    color: white;
    font-size: 17px;
    font-weight: 600;
}

.nav-items a:hover{
    color: rgb(100, 167, 255);
}

.middlebar{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 17%;
    padding-top: 4.4%;
    padding-bottom: 2.4%;
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    background-color: rgba(255, 255, 255, 0.17);
    border: 1px solid rgba(209, 213, 219, 0.8);
}

button{
    background-color: black;
    border: 1.4px solid white;
    color: white;
    padding: 15px 50px;
    font-size: 20px;
    border-radius: 10px;
    box-shadow: 1px 2px 4px #000000;
}

button:hover {
    border: 1.4px solid rgb(250, 92, 92);
}

p {
    margin-top: 15px;
    color: black;
    font-weight: 600;
    opacity: .8;
}
