@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body{
    font-family: "Roboto", sans-serif;
    background-color: #eff2f7;
    background-image: url('./img/bg.webp');
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100svh;
    background-position:center;
    background-size: cover;
}
.title{
    font-size: 2.3rem;
    font-weight: 200;
    margin: 0;
}
.title span{
    font-weight: 800;
    display: inline-block;
}
.title span::before{
    content: '';
    width: 100%;
    height: 5px;
    background-color: #a4cd3d;
    display: block;
}
.subtitle{
    padding: 0 20px;
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0;
}
.main-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    background: #ffffffe6;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #c3c3c3;
    width: 100%;
    max-width: 600px;
    height: 100svh;
    max-height: 1100px;
    overflow-y: auto;
    box-shadow: 0px 0px 20px 5px #00000021;
}
.logo{
    width: 100%;
    max-width: 250px;
    margin-bottom: 2rem;
}
.social-media{
    width: 100%;
    border-top: 1px dashed #cfcfcf;
    padding-top: 15px;
}
.social-media a{
    text-decoration: none;
    color: #8cb321;
    font-weight: 600;
}
.social-media a:hover{
    color: #56700e;
}
.social-media ul{
    list-style: none;
    padding: unset;
}
.social-media li{
    display: inline-block;
    padding: 0 10px;
    font-size: 1.8rem;
}
.contacts{
    margin:2rem 0;
}
.contacts a{
    text-decoration: none;
    color: #252524;
}
.section-head{
    border-bottom: 1px dashed #838383;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 700px) {
    .title{font-size: 2rem;}
    .subtitle{font-size: 1.1rem;}
    .logo {max-width: 200px;}
}