
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@200;500;700&display=swap');

body, html {
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 200;
}


* {
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    color: inherit;
}

.wrap-base {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    padding: 0px 15px;
    box-sizing: border-box;
}

nav {
    background-color: #F5F5F5;
    margin-bottom: 50px;
}
nav .logo {
    display:block;
    height: 50px;
    padding: 50px 0px;
}
nav .logo img {
    height: 100%;
}

footer {
    background-color: #F5F5F5;
}
footer .wrap-base {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgba(0,0,0,0.50);
}
footer .wrap-base .data {
    flex-grow: 1;
    padding-top: 15px;
    padding-bottom: 15px;
}
footer .wrap-base .link {
    margin-left: 15px;
}
h1 {
    font-size: 48px;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-top: 50px;
}
.title {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 5px;
    font-weight: 700;
}
.sub {
    margin-bottom: 20px;
}

.text {
    margin-bottom: 25px;
}
.info {
    font-size: 14px;
    color: rgba(0,0,0,0.50);
}
p {
    margin-bottom: 25px;
}

.header {
    font-stretch: 14px;
    font-weight: 700;
    margin-bottom: 50px;
    padding-bottom: 5px;
    border-bottom: solid 2px rgba(0,0,0,0.05);
}

.btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    background-color: #1A121A;
    color: rgba(255,255,255,1.00);
    border-radius: 6px;
    padding: 12px 25px;
    margin-bottom: 5px;
    cursor: pointer;
}
button:disabled {
    cursor: default;;
}

.grid {
    position: relative;
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border-bottom: solid 2px rgba(0,0,0,0.05);
    padding-bottom: 50px;
    margin-bottom: 50px;
}

@media only screen and (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }
}


.img img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}
