*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.main{
    width: 100vw;
    height: 100vh;
    background-color: whitesmoke;
}

a{
    text-decoration: none;
}

nav {
    width: 100vw;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 100px;
}

nav .buttons {
    display: flex;
    align-items: center;
    gap: 5px;
}

p{
    padding: 10px 20px;
    color: rgb(157, 156, 156);
}

a {
    padding: 8px 15px;
}

nav h2{
    color: black;
}

nav h2 span {
    color: rgb(255, 89, 172);
}

#signin {
    color: rgb(255, 89, 172);
    border-right: 1px solid rgb(226, 226, 226);
    cursor: pointer;
}

#signin:hover {
    color: lightseagreen;

}

#signup {
    color: #000;
    cursor: pointer;
}

#signup:hover {
    color: rgb(96, 96, 255);
}

#start {
    background-color: rgb(96, 96, 255);
    color: white;
    padding: 8px 10px;
    border: none;
    outline: none;
    border-radius: 7px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
}

#start:hover {
    background-color: rgb(120, 120, 250);
}


.container{
    width: 100vw;
    height: calc(100vh - 75px);
    display: flex;
}

.colors{
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-direction: column;
}

.colors p{
    background-color: black;
    color:white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 15px;
    opacity: 0;
}

.colors:hover p{
    opacity: 1;
    transition: all ease-in 0.2s;
}
