:root {
    --dark-color: #363062;
    --light-color: #4D4C7D;
    --bright-color: #F99417;
    --white-color: #F5F5F5;
}

body {
    margin: 0;
    background-color: var(--light-color);
    color: var(--white-color);
    display: flex;
    min-height: 100vh;
}

.content {
    background-color: var(--dark-color);
    padding: 0 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 800px;
}

h1 {
    text-align: center;
}

.buttons {
    display: flex;
    justify-content: space-around;
}

button,
a.button {
    background-color: var(--bright-color);
    border: none;
    border-radius: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: background-color 200ms ease-in-out;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 1rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

button:hover,
a.button:hover {
    background-color: var(--light-color);
}

a.big_link {
    display: block;
    height: 12rem;
    text-decoration: none;
    color: var(--white-color);
    box-shadow: 0 0 10px black;
    margin: 1rem;
    border-radius: 3rem;
    transition: all 0.3s ease-in-out;

    .image {
        height: 70%;
        width: 100%;
        border-radius: 3rem 3rem 0 0;
        overflow-y: hidden;
        display: flex;
        align-items: center;

        img {
            display: block;
            width: 100%;
        }
    }

    .text {
        font-size: 1.5rem;
        height: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--bright-color);
        border-radius: 0 0 3rem 3rem;
    }

    &:hover {
        scale: 1.05;
        box-shadow: 0 0 1px black;
    }
}

@media (min-width: 800px) {
    body {
        justify-content: center;
        align-items: center;
    }

    .content {
        padding: 2rem;
        border-radius: 2rem;
    }
}