@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Barlow+Condensed:wght@100;200;300;500;700&family=Barlow:wght@200;500;700&display=swap');


/* Reset some default styles */
html, body, h1, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Barlow";
    color: #FCF9ED;
    background-color: #3A99D8;
}

.container {
    text-align: center;
    margin-top: 30vh;
}

.container::before {
    content: "";
    position: absolute;
    width: 0vh;
    height: 0vh;
    background-color: #FF4500;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -100;
    transition-duration: .5s;
}

.container:hover::before {
    width: 70vh;
    height: 70vh;
}

h1 {
    font-size: 35px;
    margin-bottom: 10px;
}

p {
    font-size: 25px;
    margin-bottom: 20px;
    line-height: 35px;
}

button {
    background-color: transparent;
    color: white;
    padding: 10px 20px;
    font-size: 30px;
    border: none;
    cursor: pointer;
    margin-bottom: 5vh;
    border-radius: 4px;
    border: solid 1px #FCF9ED;
    transition-duration: .5s;
}

button:hover {
    background-color: #FCF9ED;
    color: #FF4500;
}

.bottom-image {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 30vh;
}


.mobile-message {
    text-align: center;
    border-radius: 8px;
    margin-top: 30vh;
}

.mobile-message p {
    font-size: 3vh;
}