* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
    height: 100vh;
    overflow: scroll;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: aliceblue;
}

.comparer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;

    border-radius: 1rem;
}
h1 {
    font-size: 4.5rem;
    margin: 15px 0;
    border-bottom: 4px solid lightblue;
}
.comparer-content {
    width: 500px;
    min-height: 90px;
    margin: 10px;
    padding: 10px;
    border-radius: 1rem;
    color: white;
    background-color: rgb(0, 109, 204);
}

.comparer-title {
    height: 40px;
    margin: 10px;
    padding-left: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(255, 255, 255);
}
.comparer-ipsum {
    margin: 10px;
    padding: 0 10px;
    display: none;
    text-align: justify;
    line-height: 22px;
}
.show.comparer-ipsum {
    display: block;
    transition: all 0.3s ease-in;
}

span {
    font-size: 1.75rem;
    font-weight: 700;
}
button {
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid rgb(0, 0, 0);
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
button:hover {
    transform: rotate(0.5turn);
}
a {
    width: 100%;
    text-decoration: none;
    color: white;
    transition: all 0.2s ease-in;
}
a:visited {
    color: white;
}
a:hover {
    color: rgb(214, 214, 255);
}
