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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100dvh;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* HEADER */

header {
    width: 100%; 
    height: 100dvh;
    display: flex;
    flex-direction: column;
}

.wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url('../img/wallpaper.jpg') center/cover no-repeat;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.content {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 0 100px;
    color: white;
    display: flex;
    height: 100%;
    z-index: 2;
}

.header-button{
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    width: 500px;
    justify-content: center;
}

.header-button__button{
    background-image: linear-gradient(to bottom right, #1bd015, #085410);
    transform: translate(-50%, -50%);
    transition: all 1s ease;
    text-decoration: none;
    align-items: center;
    padding-right: 10px;
    border-radius: 20px;
    white-space: nowrap;
    position: absolute; 
    font-size: 1rem;
    display: flex;
    padding: 8px;
    left: 50%;   
    top: 50%;   
}

.header-button__button:hover{
    border-radius: 50px;
}

.header-button__button i{
    background-color: #fff;
    font-size: 24px;
    border-radius: 50%;
    padding: 8px;
    color: #333;
}

.header-button__button span{
    color: #fff;
    margin-left: 10px;
}