@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.logo {
    max-width: 40%;
    margin-top: 1%;
}

body {
    text-align: center;
    background-color: #130e2b;
}

.red_button {
    font-size: xx-large;
    font-family: "Open Sans", sans-serif;
    text-shadow: 3px 3px 1px darkred;
    font-weight: 700;
    display: block;
    color: white;
    text-decoration: none;
    background: linear-gradient(to top, #b10f14, #b83b40);
    border-radius: 30px;
    padding: 0.5em;
    margin: auto;
    margin-top: 1em;
    margin-bottom: 1em;
    width: 6em;
    transition: transform 0.2s;
}

.red_button:hover {
    transform: scale(1.1);
}