* {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#principal {
    width: 50%;
    height: 80%;
    background-color: white;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

#linha1, #linha2 {
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.quadrados {
    width: 30%;
    height: 80%;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 10px 10px black;
    font-size: 100px;
}

#quadrado1 {
    background-color: #38b6ff;
}

#quadrado2 {
    background-color: #ff914d;
}

#quadrado3 {
    background-color: #fffd33;
}

#quadrado4 {
    background-color: #cb6ce6;
}

#regras {
    width: 30%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

h1 {
    color: white;
    font-size: 80px;
}

p {
    color: white;
    font-size: 40px;
    width: 80%;
}

#start {
    width: 30%;
    height: 8%;
    background-color: #cb6ce6;
    border-radius: 10px;
    font-size: 30px;
    color: white;
    border: none;
    box-shadow: 5px 5px black;
}