@import url('https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&display=swap');

* {
    box-sizing: border-box;
} 

body {
    font-family: 'Fira Mono', monospace;
    color: #13255D;
    background-image: url('../media/bikini-bottom-flowers.png');
    background-size: cover;
    padding: 40px;
}

h1 {
    font-size: 60px;
    color: #008E8E;
    margin: 0 auto;
}

h2 {
    font-size: 25px;
    font-weight: 400;
    color: #EB9A00;
    margin-bottom: 15px;
}

h3 {
    font-size: 20px;
    font-weight: 400;
    color: #008E8E;
    margin-bottom: 15px;
}

h4 {
    font-size: 18px;
    font-weight: 700;
    color: #008E8E;
    margin-bottom: 15px;
}

.header {
    line-height: 160%;
}

.content {
    background-color: #D9E0F5;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    padding: 60px;
    border-radius: 15px;
}

.box1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.button {
    font-family: "Fira Mono", monospace;
    font-weight: 700;
    border-radius: 16px;
    background: #E5B711;
    color: #13255D;
    height: auto;
    width: 249px;
    padding: 12px 15px;
    cursor: pointer;
    flex-shrink: 0;
    align-self: flex-end;
}

.button:hover {
    background: #008E8E;
    color: #E5B711;
    transition: transform 0.5s ease-in-out;
}

