body{
    margin: 0;
    font-family: sans-serif;
}

.dark-theme{
    color: white;
    background-color: #1a3e4c;
}

.light-theme{
    color: #5f5874;
    background-color: white;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url(img/bg-left.svg), url(img/bg-right.svg);
    background-position: left top, right bottom;
    background-repeat: no-repeat, no-repeat;
}

.header, .footer {
    display: flex;
    flex: 1;
    min-height: 70px;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100%;
    height: 70px;
    background-image: url('img/logo.svg');
    background-repeat: no-repeat;
    background-size: 400px auto;
    background-position: center;
}
.image {
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: 400px auto;
    background-position: center;
}
.dark-theme .image {
    background-image: url('img/earth.svg');
}
.light-theme .image {
    background-image: url('img/earthLigthTheme.svg');
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 2;
    margin: 20px auto;
}

.description {
    max-width: 50%;
}
.title {
    font-size: 24px;
}

p {
    text-align: center;
}

button{
    border: none;
    background-color: #b8c134;
    border-radius: 10px;
    font-size: 18px;
    padding: 10px;
    color: white;
}

@media (max-width: 600px) {
    .logo, .container {
        background-size: 50% auto;
    }
    .image {
        background-size: 90% auto;
    }
    .description {
        max-width: 80%;
    }
}
