* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
}

body {
    background-color: #fefeff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
    background-color: #1c2c45;
    color: #cfd6e1;
    margin-bottom: 100px;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    font-size: 40px;
    font-weight: bold;
}

.logo a {
    color: #fefefc;
    text-decoration: none;
    transition: .3s;
}

.logo a:hover {
    color: rgb(238, 231, 231);
    text-decoration: none;
}


.moto {
    font-size: 24px;
}

.preparation__container {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: .3s;
}

#new_item {
    font-family: Roboto, sans-serif;
    font-size: 22px;
    padding: 15px 20px;
    margin-bottom: 20px;
    color: #090c15;
    border-radius: 7px;
    border: 1px solid #d4dde6;
    border-width: .3px;
    outline: none;
    width: 400px;
}

.buttons__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.button {
    margin: 20px;
    background: #1d71f8;
    border: 2px solid #1d71f8;
    font-family: sans-serif;
    font-size: larger;
    color: white;
    border-radius: 7px;
    padding: 12px 20px;
    transition: .3s;
}

.button:hover {
    background-color: white;
    color: #1d71f8;
}

.header {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
}

#items_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 70%;
}

.items {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 400px;
}

.item {
    display: flex;
    justify-content: space-between;
    font-family: Roboto, sans-serif;
    font-size: 24px;
    padding: 15px 20px;
    border-radius: 7px;
    margin: 10px;
    border: none;
    display: flex;
    align-items: center;
    color: #090c15;
    background-color: #e5eef6;
}

.delete_button {
    background-color: #ff4d4f;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.delete_button:hover {
    background-color: #d9363e;

}

.choosing__container {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.options {
    display: flex;
}

.option {
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 32px;
    font-family: Roboto, sans-serif;
    color: #0f0f0f;
    transition: .3s;
}

.option:hover {
    background-color: #e6f0ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vs {
    font-size: 32px;
    margin: 20px;
    color: #a11824;
    font-weight: bold;
}

.result {
    border: none;
    font-size: 24px;
    font-weight: bold;
    color: #1c2c45
}

.hidden {
    display: none;
}

@media only screen and (max-width: 600px) {

    header {
        align-items: center;
        justify-content: center;
        font-size: 34px;
    }

    #new_item {
        width: 320px
    }

    .header {
        font-size: 34px;
    }

    .moto {
        display: none;
    }

    .items {
        margin-top: -35px;
        width: 300px;
    }

    .item {
        display: flex;
        justify-content: space-between;
    }

    .options {
        flex-direction: column;
        align-items: center;
    }

}

