@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   list-style: none;
   font-family: 'Poppins', sans-serif;
   scroll-behavior: smooth;
}

html {
   font-size: 10px;
}

section {
   background-color: rgba(18, 0, 73, 0.99);
}

main section {
   background-color: transparent;
}


main {
   background-color: rgba(18, 0, 73, 0.99);
   background-image: url(../images/wodkan-photo-test1.png);
   background-position-y: 10%;
   background-repeat: no-repeat;
   background-size: cover;

}

header {
   display: flex;
   justify-content: space-between;
   padding: 10px 20px;
}

.logo {
   margin: 10px 60px;
}

.logo img {
   height: 110px;
}

.menu {
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: center;
   gap: 15px;
   margin-right: 60px;
   font-size: 1.8rem;
}

.menu li {
   padding: 5px 10px;
}

.menu li:last-child {
   margin-left: 15px;
}

.menu a {
   display: block;
   font-weight: 500;
   text-decoration: none;
   color: white;
   transition: .3s;
}

.menu li::after {
   content: '';
   display: block;
   width: 0%;
   height: 2px;
   background-color: #ffff19;
   transition: .3s;
}

.menu li:hover::after {
   width: 100%;
}

.menu li:last-child::after {
   display: none;
}

.menu li:last-child a {
   padding: 14px 18px;
   background-color: #5737B7;
   border-radius: 5px;
}

.menu li:last-child a:hover {
   color: #31399e;
   background-color: #ffff19;
   box-shadow: 0 0 5px .5px #ffff19;
}

section {
   min-height: 100vh;
}

.home {
   display: flex;
   justify-content: center;
   color: white;
}

.home div {
   margin: 250px;
   text-align: center;
}

.home-title  h2 {
   font-size: 3.5rem;
   line-height: 140%;
}

#contact {
   display: flex;
   justify-content: space-around;
   align-items: center;
   font-size: 2.2rem;
   color: white;
   padding: 0 8%;
}

.contact-title {
   display: flex;
   flex-direction: column;
   width: 60%;
}

.contact-title span:first-child {
   font-weight: 600;
   font-size: 4rem;
}

.contact-title span:last-child {
   font-size: 1.8rem;
   width: 60%;
}

.contact-info {
   display: flex;
   flex-direction: column;
}

.contact-info div {
   margin: 15px;
}

.contact-info span {
   position: relative;
   margin-left: 15px;
   transition: .3s ease-out;
}

.contact-info span::after {
   position: absolute;
   left: 0;
   content: '';
   display: block;
   width: 100%;
   height: 2px;
   background-color: #ffff19;
   transition: .1s;
}

.contact-info span:hover::after {
   height: 6px;
}

.contact-info a {
   text-decoration: none;
   color: white;
}


