body {
    background-color: rgb(87, 87, 87);
    color: whitesmoke;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 100dvh;
    margin: 0;
    padding: 30px;
    font-family: Helvetica, Verdana, sans-serif;
}

header {
    margin-top: -30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    transform: rotate(-10deg);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: whitesmoke;
}

#home {
    transform: rotate(180deg);
}

#mousehome {
    display: inline-block;
    text-decoration: underline;
}

#mousehome:hover {
    transform: rotate(180deg);
}

#content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-top: 1px solid whitesmoke;
    margin-top: 2.5em;
}

.text {
    margin-top: 5px;
    font-size: 35px;
    font-weight: lighter;
}

.buttons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#button1, #button2 {
    position: relative;
    flex-shrink: 0;
    margin: 20px;
    background-color: rgb(255, 19, 212);
    color: whitesmoke;
    border: none;
    padding: 50px 120px;
    font-size: 5em;
    font-family: inherit;
    max-width: 100%;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#password {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    padding: 0;
}

@media (max-width: 1024px) {
    #content {
        padding: 1.5em;
    }

    .buttons {
    display: flex;
    justify-content: space-around;
}

#button1, #button2 {
    font-size: 3em;
}

#password {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    padding: 0;
}
}

@media (max-width: 768px) {
     header {
        flex-direction: column;
        margin-top: 15px;
        gap: 20px;
    }

    #title {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        margin-right: -70px;
    }

    h1 {
        white-space: nowrap;
        margin-top: 20px;
        text-align: center;
        font-size: clamp(1.5rem, 5vw, 1.7rem);
    }

    #mousehome {
        transform: rotate(180deg);
    }

    #button1, #button2 {
            position: relative;
    flex-shrink: 0;
    margin: 20px;
    background-color: rgb(255, 19, 212);
    color: whitesmoke;
    border: none;
    padding: 30px 70px;
    font-size: 2em;
    font-family: inherit;
    max-width: 100%;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    }

    #password {
        font-size: 0.6rem;
    }

    .text {
        font-size: 28px;
    }
}