@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
}

body {
    max-width: 1100px;
    margin: auto;
    padding: 0 4%;
}

a {
    text-decoration: none;
    color: rgb(100, 100, 100);
}

h1,
h2,
h3 {
    max-width: 800px;
    text-align: center;
}

h1 {
    font-size: 35px;
}

h2 {
    font-size: 25px;
}

header {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

button {
    padding: 20px;
    border: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
}

input {
    padding: 20px;
    border: none;
    outline: none;
    background: rgb(240, 240, 240);
}

main {
    padding: 5% 0;
}

main,
section,
form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

form {
    max-width: 250px;
}

form input {
    border: 1px solid rgb(220, 220, 220);
}

form button {
    border: none;
    background: rgb(0, 100, 255);
}

form input,
form button {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
}

.hidden {
    display: none;
}

#row-list {
    max-width: 800px;
    width: 100%;
}

.row-item,
.runway-box p {
    width: 100%;
    height: 80px;
    margin-bottom: 20px;
    border: 2px solid rgb(220, 220, 220);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.options-btn {
    padding: 10px 20px;
    border: none;
    font-size: 30px;
    transition: 0.1s;
    color: rgb(100, 100, 100);
    background-color: rgb(255, 255, 255);
}

.options-btn:hover {
    background-color: rgb(240, 240, 240);
}

#logo {
    border-bottom: 4px solid rgb(20, 255, 20);
    font-size: 25px;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
    color: rgb(150, 150, 150);
}

#menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

#menu #login {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgb(220, 220, 220);
    transition: 0.15s;
}

#menu #login:hover {
    background: rgb(220, 220, 220);
}

#menu #signup {
    padding: 15px 25px;
    border-radius: 10px;
    transition: 0.15s;
    color: rgb(255, 255, 255);
    background: rgb(20, 255, 20);
}

#menu #signup:hover {
    background: rgb(220, 220, 220);
}

#landing h1 {
    font-size: 50px;
}

#landing h2 {
    font-size: 25px;
    font-weight: normal;
    color: rgb(100, 100, 100);
}

#cta {
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    transition: 0.15s;
    color: rgb(255, 255, 255);
    background: rgb(20, 255, 20);
}

#cta:hover {
    background: rgb(220, 220, 220);
}

#logout,
#unsubscribe {
    padding: 15px 25px;
    border-radius: 10px;
    transition: 0.15s;
    background: rgb(255, 0, 0);
}

#change-password {
    padding: 15px 25px;
    border-radius: 10px;
    transition: 0.15s;
    color: rgb(255, 255, 255);
    background: rgb(0, 100, 255);
}