* {
    background: #36364e;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
}

h1 {
    margin-bottom: 40px;
}

img {
    max-width: 600px;
}

a {
    cursor: pointer;
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    background-color: #fc7d7a;
    font-size: 2rem;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

a:hover {
    background-color: #ff9166;
}

.main_wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

.copyright_wrapper {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}

@media screen and (max-width: 768px) {
    img {
        width: 80%;
    }
}