@font-face{
    font-family: 'nugo-sans';
    font-weight: 300;
    src: url('assets/fonts/nugosanslight.woff2') format('woff2'),
         url('assets/fonts/nugosanslight.woff') format('woff');
}

*{
    margin: 0%;
    padding: 0%;
    font-family: sans-serif;
}

body{
    background-image: url("assets/img/background.png");
    background-attachment: fixed;
    background-size: contain;
}

.wrapper{
    background-color:rgb(255, 255, 255);
    margin: auto;
    margin-bottom: 0rem;
    max-width: 50rem;
    min-height: 100%;
    padding: 0rem min(8vw, 8rem);
    padding-bottom: 0.1rem;
    padding-top: 1rem;
}

section{
    margin-top: clamp(2rem, 3vw, 4rem);
    margin-bottom: clamp(2rem, 3vw, 4rem);
}

h1,h2,h3{
    font-family: 'nugo-sans';
    font-weight: 300;
}

h1,h2{
    text-align: center;
}

h1{
    font-size: clamp(2rem, 9vw, 5rem);
    margin-top: 2rem;
}

h2{
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
}

h3{
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

p{
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: rgb(91, 91, 91);
    margin-bottom: clamp(1.2rem, 2vw, 2rem);
}

img{
    display: block;
    max-width: 100%;
}

.custom-button{
    font-size: clamp(0.8rem, 3vw, 0.9rem);
    padding: 1rem;
    display: block;
    max-width: 12rem;
    margin: auto;
    margin-bottom: clamp(1rem, 3vw, 3rem);
    text-decoration: none;
    text-align: center;
    border-radius: 0.7em;
    color: rgb(70, 70, 70);
    background-color: rgb(227, 227, 227);
    font-weight: 600;

}
.custom-button:hover{
    background-color: rgb(197, 245, 162);
}

.logo-image{
    display: block;
    max-width: clamp(5rem, 18vw, 10rem);
    margin: auto;
}

.debug{
    outline: solid red;
}


/* alternate button style. . . */

/* .custom-button{
    padding: 1rem;
    display: block;
    max-width: 12rem;
    margin: auto;
    margin-bottom: 3rem;
    text-decoration: none;
    text-align: center;
    border-radius: 0.7em;
    color: rgb(23, 54, 0);
    background-color: rgb(147, 227, 90);
    font-weight: 600;

}
.custom-button:hover{
    background-color: rgb(139, 245, 64);
} */