*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --main-color: ;
    --submain-color: ;
    --page-color: ;
    --text-color: ;
}

html, body{
    min-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    transition: 0.5s ease;
}

a,
abbr{
    text-decoration: none;
}

/* Main code */

body{
    background: #B9BDA2;
    background: radial-gradient(circle,rgba(185, 189, 162, 1) 0%, rgba(197, 206, 121, 1) 50%, rgba(207, 206, 186, 1) 100%);
}

.main-section{
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

header{
    width: 100vw;
    padding: 1vw 0;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.logo{
    width: 75px;
    height: 75px;
    border-radius: 10px;
}

h1{
    color: #0257D9;
}