   
.title {
  color: white;
    font-size: 50px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction:column;
}


body{
  
  background-color: rgb(125, 25, 224);
}
.enter-button {
    background-color: white;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 20px;
    display: inline-block;
    margin-top: 20px;
    
}

.enter-button:hover {
    background-color: rgb(224, 197, 250);
}
.mission {
    border: 3px solid rgb(125, 25, 224);
    padding: 20px;
    margin: 20px;
    text-align: center;
    background-color: white;
    color: rgb(125, 25, 224);
}

.mission h2 {
    margin-top: 0;
}

.about-section {
    display: flex;
    gap: 40px;
    padding: 40px;
    align-items: flex-start;
    font-size:20px;
}

.founder {
    width: 250px;
    text-align: center;
}

.founder img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.founder h2 {
    margin-bottom: 5px;
}

.founder p {
    font-size: 16px;
}

.main-text {
    flex: 1;
}
.credits {
    border: 3px solid white;
    padding: 20px;
    margin: 20px;
    text-align: center;
    background-color: white;
    color: rgb(125, 25, 224);
}