* {
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
}

.btn {
    display: flex;
    justify-content: center;
    padding: 15px;
    align-items: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background: #D22636;
    color: #FFF;
    transition: 0.3s;
}
.btn:hover {
    background: #0D0D0D;
    color: #FFF;
}

img {
    width: 100%;
}

body {
    width: 100vw;
    overflow-x: hidden;
}

