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

html,
body {
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
}

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

.landing_page{
    width: 100vw;
    height: 100vh;
    background-color: whitesmoke;
    overflow: hidden;
}

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

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

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);
}


.hero {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.hero h1 {
    font-size: 60px;
    text-align: center;
    font-weight: bold;
    line-height: 60px;
}

.hero h1 span {
    color: rgb(255, 89, 172);

}

.hero p {
    font-size: 20px;
    text-align: center;
    color: #333;
}



.hero .buttons button {
    padding: 12px 20px;
    border: none;
    outline: none;
    border-radius: 7px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

#start_generator {
    background-color: rgb(94, 94, 253);
    color: white;
    font-weight: bold;
}

#start_generator:hover {
    background-color: rgb(112, 112, 254);
}

#explore {
    border: 1.5px solid rgb(169, 169, 169);
    font-weight: bold;
}

#explore:hover {
    border: 1.5px solid rgb(84, 83, 83);
}