:root {
  --rw-yellow: #F3FEB0; 
  --rw-orange: #FEA443;
  --rw-purple: #705E78;
  --rw-grey: #A5AAA3;
  --rw-red: #812F33;
  box-sizing: border-box;
}

html {
  height: 100%;
  box-sizing: border-box;
}

body{
  box-sizing: border-box;
  font-size: 1em;
  margin: 0;
  margin: 0;
  padding: 0;
  font-family: 'Ubuntu', sans-serif;
  scroll-behavior: smooth;
  height: 100vh;
}

.wrapper {
  box-sizing: border-box;
  border-top-width: 2px;
  border-top-color: var(--rw-orange);
  border-top-style: solid;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

a{
  text-decoration: none;
  color: var(--rw-orange);
}

a:hover {
  text-decoration:underline;
}

h1{
  font-size: 2em;
}

#main-container{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  flex:2;
  display: flex;
}

#footer{
  width: 100%;
  background-color: var(--rw-purple) ;
  color: var(--rw-yellow);
  border-top-width: 2px;
  border-top-color: var(--rw-orange);
  border-top-style: solid;

}

.footer-mini-content{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  column-gap: 2em;
  align-items: left;
  font-size: 0.5em;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.footer-mini-content b{
  color: var(--rw-yellow);
}

#mainlogo{
  width: 30%; height: auto;
}

#cloudwoman{
  width: 30%; height: auto;
}

@media all and (max-width: 736px) { 
  #mainlogo{
    width: 80%; height: auto;
  }
  
  #cloudwoman{
    width: 80%; height: auto;
  } 

  .footer-mini-content{
    font-size: 0.8em;
    flex-wrap: nowrap;
  } 
}

@media all and (max-width: 480px) { 
  #mainlogo{
    width: 80%; height: auto;
    
  }  
  #cloudwoman{
    width: 80%; height: auto;
  }
  .footer-mini-content{
    font-size: 0.8em;
    flex-wrap: wrap;
  } 
}
