/* RALEWAY FONT */
/* ==================================================== */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap');

/* DEFAULTS */
/* ==================================================== */
:root {
  --global-c: hsl(0, 0%, 90%);
  --global-bg: hsl(210, 25%, 10%);
}

body {
  color: var(--global-c);
  background: var(--global-bg);
  font-family: Raleway;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.meta {
  padding-top: 5vh;
}

.meta,
main {
  padding-bottom: calc(100px + 5vh);
  text-align: center;
}

.button {  
  display: inline-block;  
  border-radius: 4px;  
  background-color: #293a97;  
  border: none;  
  color: #FFFFFF;  
  text-align: center;  
  font-size: 20px;  
  padding: 10px;  
  width: 200px;  
  transition: all 0.5s;  
  cursor: pointer;  
  margin: 5px;  
}  

.button:hover span {  
  padding-right: 25px;  
}  

.button:hover span:after {  
  opacity: 1;  
}  

/* ABS */
/* ==================================================== */
.abs-site-link {
  position: fixed;
  z-index: 11;
  top: 40px;
  right: 40px;
  color: var(--global-c);
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  background-color: var(--global-bg);
  opacity: .8;
  letter-spacing: 10px;
}

.abs-site-link:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -15px;
  width: 100%;
  border-bottom: 2px solid currentColor;
  transform: translateX(50%);
  pointer-events: none;
  opacity: .5;
}
.tImg{
  width:291px;
  height:369px;
  margin: 5px 5px 5px 0;
  border-radius: 50px;
}

.divider {  
  margin: 20px 0;  
  width: 100%;  
  height: 2px;  
  background-color: rgb(194, 185, 66);  
}  

.content {  
  margin: 20px 0;  
  padding: 20px;  
  background-color: rgb(102, 65, 150);  
  font-size: 16px;  
  line-height: 1.5;  
}  