﻿body
{
    background-image : url(../backgrounds/space-sky.png);
    background-size : 2000px;
    object-fit : fill;
}

.header0 {
    width: fit-content;
}

.header1 {
    color : navajowhite;
    background-image: linear-gradient(45deg, black, darkblue);
    border: 10px solid;
    border-color: darkcyan;
    border-radius : 50px;
    font-size : 35px;
    font-family : 'Comic Sans MS';
    width : 80%;
}

section 
{
    padding : 20px;
    justify-content : center;
}

.left-section1 {
    color: darkcyan;
    background-image: linear-gradient(65deg, cyan, lightcyan, lightblue);
    border: 10px solid;
    border-radius: 20px;
    border-color: darkcyan;
    font-family: 'Comic Sans MS';
    font-size: 25px;
    padding-left: 50px;
    padding: 20px;
    width: 43%;
    justify-content: space-between;
    float: left;
}

.right-section1 {
    color: darkorange;
    background-image: linear-gradient(65deg, ivory, gold, orange);
    border: 10px solid;
    border-radius: 20px;
    border-color: darkorange;
    font-family: 'Comic Sans MS';
    font-size: 25px;
    padding-right : 50px;
    padding : 20px;
    width: 43%;
    float : right;
}

p {
    line-height : 1.8;
}

.button0 {
    width: fit-content;
    background-image: linear-gradient(135deg, #68D8F2, #68D8F2, gold);
    background-position: left;
    background-size: 400% 100%;
    border: 10px solid;
    border-color: #1EBFE8;
    border-radius: 12px;
    transition: all .4s cubic-bezier(.4,0,.2,1), background-position 0.6s ease;
    cursor: pointer;
    place-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #0B232B;
    margin: 20px;
    padding: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .button0:hover {
        transform: scale(1.1) rotate(-12deg);
        border-radius: 50%;
        border-color: #D0FF40;
        background-position: right;
        box-shadow: 0 0 30px #008CFF;
    }