@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.boxshadow {
   box-shadow: 10px 10px rgb(255, 46, 46);
       background: #833AB4;
background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(255, 0, 0, 1) 0%, rgba(252, 176, 69, 1) 100%);
padding: 50px;
border-radius: 1000px;
}
body {
    background-color: darkred;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, p, a, ul, h3 {
    color: white;
    text-align: center;
}


.button {
  padding: 17px 40px;
  border-radius: 10px;
  border: 0;
  background-color: rgb(255, 175, 114);
  letter-spacing: 1.5px;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: rgb(236, 175, 111) 0px 10px 0px 0px;
  color: hsl(0, 0%, 100%);
  cursor: pointer;
}

.button:hover {
  box-shadow: rgb(255, 177, 94) 0px 7px 0px 0px;
}

.button:active {
  background-color: rgb(255, 146, 56);
  box-shadow: rgb(244, 198, 91) 0px 0px 0px 0px;
  transform: translateY(5px);
  transition: 200ms;
}


.button a {
    color: rgb(0, 0, 0);
}

.fontsize {
    font-size: 50px;
}

.fontsize2 {
    font-size: 40px;
}

.fontfamily {
    font-family: "Montserrat", sans-serif;
}

.bgcolor {
    background-color: rgb(249, 160, 87); padding: 2%;
    border: 2px solid black;
    width: 100%;
    margin-bottom: -10%;
    align-items: center;
}