@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}


body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url(./Assets/sonix_bg_body.jpg);
    background-size: cover;
    background-position: center;
    color: aliceblue;
    font-family: Arial, sans-serif;
    position: relative;
}


.container {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    
    background-color: rgba(210, 49, 103, 0.8);
    padding: 40px;
    border-radius: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container h1 {
    font-family: "Silkscreen", sans-serif;
    font-size:large;
}


footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    
    background-color: thistle;
    color: black;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

button {
    padding: 14px 19px;
    border-radius: 10px;
    border: none;
    font-size: 20px;
    transition: all 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
}

button:hover {
    background-color: #81e06c;
}

@media (max-width: 600px) {
    .container {
        left: 5%;
        right: 5%;
        width: 90%;
    }
}
