*{
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Roboto', sans-serif;
    background-color: #ff9595;
}

.content{
    width: 90vw;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px;
}

.content h1{
    font-family: "Rubik Wet Paint", system-ui;
    font-size: 9.5rem;
    color: #000000;
    margin-bottom: 10px;
}

.content p{
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 30px;
}

.content img{
    max-width: 380px;
    height: auto;
    margin-bottom: 30px;
}
.content a{
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    padding: 10px 15px;
    border: 2px solid #ffffff;
    border-radius: 10px;
    background-color: #ff9595;
    transition: all 0.3s ease-in-out;
}
.content a:hover{
    background-color: #ffffff;
    color: black;
}
/* Responsive adjustments */
@media (max-width: 768px) {
}