html, body {
    background-color: #242655;
    height: 100%;
    margin: 0;
    padding: 0;
}

body, h1 {
    font-family: "Garamond", Georgia, "Times New Roman", serif;
    font-size: 2em;
}

.container {
    align-items: center;
    background-image: url("../img/background-360x800.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFF;
    display: flex;
    height: 100vh;
    justify-content: center;
}

.button-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.btn-cloud {
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cloud:hover {
    transform: scale(1.1);
}

.small {
    font-size: 14px;
    background-color: #e0e0e0;
}

.medium {
    font-size: 18px;
    background-color: #a0a0a0;
}

.large {
    font-size: 24px;
    background-color: #707070;
    color: white;
}

@media (min-width: 400px) {
    .container {
        background-image: url("../img/background-1920x1080.webp");
    }
}
