*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Explora', cursive;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 1rem 5rem;
    background: wheat;
}

h2{
    font-size: 5rem;
}

ul{
    display: flex;
    list-style: none;
    align-items: center;
}

a{
    text-decoration: none;
    font-size: 1.2rem;
    color: black;
    margin-left: 5rem;
}

.Logo{
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 1.5rem;
    transform: translate(-50%, -50%) scale(6);
}

.first-page{
    height: 100vh;
    background: rgb(21,21,21);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-left: 5rem;
}

.home{
    height: 100vh;
}


.first-page img {
    height: 50%;
}

.square{
    width: 10rem;
    height: 10rem;
    background: sandybrown;
    top: 90%;
    left: 30%;
    position: fixed;
    text-align: center;
}

h2{
    text-align: center;
}
