@import "footer.css";
@import "header.css";
@import "main.css";

main {
    padding: 50px 20px;
    font-family: 'Roboto';
}

header {
    background-color: #333;
    font-family: 'Roboto';
    color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

footer {
    font-family: 'Roboto';
    background-color: #333;
    color: #fff;
    padding: 20px 40px;
    text-align: center;
    margin-top: 50px;
}

.to__top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid  rgb(48, 46, 46);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
  }
  
  .to__top>span {
    animation: anim 500ms infinite linear;
  }
  
  @keyframes anim {
  
    0%,
    100% {
      transform: translate(0);
    }
  
    75% {
      transform: translateY(-7px);
    }
  }
  

