@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('fonts/IvyMode-Regular.otf');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter Regular", sans-serif;
}
body {
    min-height: 100vh;
    background-color: #000;
}

.banner {
    background-color: #140B1E;
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    padding: 40px 80px;
}

.banner.first {
    background-image: url(background-image.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
}

.banner-container button {
    width: 150px;
    border: none;
    font-weight: 800;
    border-radius: 25px;
    margin-top: 50px;
    padding: 10px;
    text-transform: uppercase;
    color: rosybrown;
    background-color: #FFF;
    &:hover {
        background-color: rosybrown;
        color: #FFF;
        cursor: pointer;
    }
}